Skip to content

Commit 9fd467d

Browse files
Fixed lint issue
1 parent 3efab67 commit 9fd467d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compute/cloud-client/src/main/java/compute/disks/storagepool/CreateHyperdiskStoragePool.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public static void main(String[] args)
3636
String storagePoolName = "YOUR_STORAGE_POOL_NAME";
3737
// The type of disk you want to create.
3838
// Storage types can be "hyperdisk-throughput" or "hyperdisk-balanced"
39-
String storagePoolType = String.format( "projects/%s/zones/%s/storagePoolTypes/hyperdisk-balanced",
40-
projectId, zone);
39+
String storagePoolType = String.format(
40+
"projects/%s/zones/%s/storagePoolTypes/hyperdisk-balanced", projectId, zone);
4141
// Optional: the capacity provisioning type of the storage pool.
4242
// The allowed values are advanced and standard. If not specified, the value advanced is used.
4343
String capacityProvisioningType = "advanced";

0 commit comments

Comments
 (0)