We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd3601 commit 56e69c4Copy full SHA for 56e69c4
src/main/java/com/qiniu/storage/BucketManager.java
@@ -53,7 +53,7 @@ public static String entry(String bucket, String key) {
53
*/
54
public static String entry(String bucket, String key, boolean mustHaveKey) {
55
String en = bucket + ":" + key;
56
- if(!mustHaveKey && (key == null)) {
+ if (!mustHaveKey && (key == null)) {
57
en = bucket;
58
}
59
return UrlSafeBase64.encodeToString(en);
0 commit comments