Skip to content

Commit 0a6a349

Browse files
1 parent 5f5160d commit 0a6a349

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

‎google-cloud-storage/src/main/java/com/google/cloud/storage/ParallelCompositeUploadBlobWriteSessionConfig.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,8 @@ public static PartNamingStrategy prefix(String prefixPattern) {
521521
}
522522

523523
/**
524-
* Strategy in which the end object name is the prefix included and is present on each part
525-
* and intermediary compose object.
524+
* Strategy in which the end object name is the prefix included and is present on each part and
525+
* intermediary compose object.
526526
*
527527
* <p>General format is
528528
*
@@ -535,15 +535,14 @@ public static PartNamingStrategy prefix(String prefixPattern) {
535535
* <p><b><i>NOTE:</i></b>The way in which both {@code randomKeyDigest} and {@code
536536
* objectInfoDigest} are generated is undefined and subject to change at any time.
537537
*
538-
*
539538
* @see #withPartNamingStrategy(PartNamingStrategy)
540539
* @since 2.30.2 This new api is in preview and is subject to breaking changes.
541540
*/
542541
@BetaApi
543542
public static PartNamingStrategy objectNamePrefix() {
544543
return objectNamePrefix("");
545544
}
546-
545+
547546
private static PartNamingStrategy objectNamePrefix(String prefixPattern) {
548547
checkNotNull(prefixPattern, "prefixPattern must be non null");
549548
SecureRandom rand = new SecureRandom();

0 commit comments

Comments
 (0)