diff --git a/google-cloud-storage/src/main/java/com/google/cloud/storage/Storage.java b/google-cloud-storage/src/main/java/com/google/cloud/storage/Storage.java index 0e22be2773..db96fe0381 100644 --- a/google-cloud-storage/src/main/java/com/google/cloud/storage/Storage.java +++ b/google-cloud-storage/src/main/java/com/google/cloud/storage/Storage.java @@ -702,7 +702,8 @@ public static BlobWriteOption userProject(String userProject) { } /** - * Returns an option that signals automatic gzip compression should not be performed en route to the bucket. + * Returns an option that signals automatic gzip compression should not be performed en route to + * the bucket. */ public static BlobWriteOption disableGzipContent() { return new BlobWriteOption(Option.IF_DISABLE_GZIP_CONTENT, true); diff --git a/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageImplTest.java b/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageImplTest.java index 621f8beee5..1f55217843 100644 --- a/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageImplTest.java +++ b/google-cloud-storage/src/test/java/com/google/cloud/storage/StorageImplTest.java @@ -750,10 +750,10 @@ public void testCreateBlobFromStreamDisableGzipContent() throws IOException { BlobInfo infoWithHashes = infoBuilder.setMd5(CONTENT_MD5).setCrc32c(CONTENT_CRC32C).build(); BlobInfo infoWithoutHashes = infoBuilder.setMd5(null).setCrc32c(null).build(); EasyMock.expect( - storageRpcMock.create( - EasyMock.eq(infoWithoutHashes.toPb()), - EasyMock.capture(capturedStream), - EasyMock.eq(BLOB_TARGET_OPTIONS_CREATE_DISABLE_GZIP_CONTENT))) + storageRpcMock.create( + EasyMock.eq(infoWithoutHashes.toPb()), + EasyMock.capture(capturedStream), + EasyMock.eq(BLOB_TARGET_OPTIONS_CREATE_DISABLE_GZIP_CONTENT))) .andReturn(BLOB_INFO1.toPb()); EasyMock.replay(storageRpcMock); initializeService();