Skip to content

Commit 56e69c4

Browse files
committed
format
1 parent 7cd3601 commit 56e69c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/qiniu/storage/BucketManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static String entry(String bucket, String key) {
5353
*/
5454
public static String entry(String bucket, String key, boolean mustHaveKey) {
5555
String en = bucket + ":" + key;
56-
if(!mustHaveKey && (key == null)) {
56+
if (!mustHaveKey && (key == null)) {
5757
en = bucket;
5858
}
5959
return UrlSafeBase64.encodeToString(en);

0 commit comments

Comments
 (0)