Skip to content

Commit 86afa74

Browse files
committed
removed unnecessary newlines
1 parent e711702 commit 86afa74

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

plugins/storage/volume/storpool/src/main/java/org/apache/cloudstack/storage/datastore/driver/StorPoolPrimaryDataStoreDriver.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ private String resizeVolume(DataObject data, String path, VolumeObject vol) {
429429
}
430430

431431
private void updateVolumeWithTheNewSize(VolumeObject vol, ResizeVolumePayload payload) {
432-
433432
vol.setSize(payload.newSize);
434433
vol.update();
435434
if (payload.newMaxIops != null) {
@@ -479,7 +478,6 @@ private String updateStorPoolVolume(VolumeObject vol, ResizeVolumePayload payloa
479478
}
480479

481480
private static SpApiResponse updateVolumeByStorPoolQoS(ResizeVolumePayload payload, SpConnectionDesc conn, String name, String tier, String template) {
482-
483481
SpApiResponse resp;
484482
Map<String, String> tags = StorPoolHelper.addStorPoolTags(null, null, null, null, tier);
485483
StorPoolVolumeDef spVolume = new StorPoolVolumeDef(name, payload.newSize, tags, null, null, template, null, null,
@@ -489,7 +487,6 @@ private static SpApiResponse updateVolumeByStorPoolQoS(ResizeVolumePayload paylo
489487
}
490488

491489
private static SpApiResponse updateVolumeByOffering(VolumeObject vol, ResizeVolumePayload payload, SpConnectionDesc conn, String name) {
492-
493490
SpApiResponse resp;
494491
long maxIops = payload.newMaxIops == null ? Long.valueOf(0) : payload.newMaxIops;
495492

0 commit comments

Comments
 (0)