diff --git a/google-cloud-storage/src/main/java/com/google/cloud/storage/BucketInfo.java b/google-cloud-storage/src/main/java/com/google/cloud/storage/BucketInfo.java index 7b4a943204..fd5e122df5 100644 --- a/google-cloud-storage/src/main/java/com/google/cloud/storage/BucketInfo.java +++ b/google-cloud-storage/src/main/java/com/google/cloud/storage/BucketInfo.java @@ -847,8 +847,8 @@ public static SetStorageClassLifecycleAction newSetStorageClassAction( /** * Create a new {@code AbortIncompleteMultipartUploadAction}. An incomplete multipart upload - * will be aborted when the multipart upload meets the specified condition. Age is the - * only condition supported for this action. + * will be aborted when the multipart upload meets the specified condition. Age is the only + * condition supported for this action. */ public static LifecycleAction newAbortIncompleteMultipartUploadAction() { return new AbortIncompleteMultipartUploadAction(); @@ -901,7 +901,9 @@ public StorageClass getStorageClass() { public static class AbortIncompleteMultipartUploadAction extends LifecycleAction { public static final String TYPE = "AbortIncompleteMultipartUpload"; - private AbortIncompleteMultipartUploadAction() { super(TYPE); } + private AbortIncompleteMultipartUploadAction() { + super(TYPE); + } } }