Skip to content

Commit 94f0132

Browse files
author
Joshua Miller
committed
Put .with on a separate line for consistency
1 parent fbacf14 commit 94f0132

File tree

1 file changed

+4
-2
lines changed
  • ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers

1 file changed

+4
-2
lines changed

ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/ABMTestHelper.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ public static PutDataPolicySpectraS3Response createDataPolicyWithVersioningAndCr
5959
if (checksumType == null) {
6060
//Create the data policy with versioning
6161
return client.putDataPolicySpectraS3(new PutDataPolicySpectraS3Request(dataPolicyName)
62-
.withVersioning(versioningLevel).withAlwaysForcePutJobCreation(true));
62+
.withVersioning(versioningLevel)
63+
.withAlwaysForcePutJobCreation(true));
6364
}
6465
//Create the data policy with versioning and checksum
6566
return client.putDataPolicySpectraS3(new PutDataPolicySpectraS3Request(dataPolicyName)
6667
.withVersioning(versioningLevel)
6768
.withEndToEndCrcRequired(true)
68-
.withChecksumType(checksumType).withAlwaysForcePutJobCreation(true));
69+
.withChecksumType(checksumType)
70+
.withAlwaysForcePutJobCreation(true));
6971
}
7072

7173
/**

0 commit comments

Comments
 (0)