Skip to content

Commit 7388694

Browse files
committed
format
1 parent 184d50b commit 7388694

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public final class StreamUploader {
3232
private int retryMax;
3333

3434
public StreamUploader(Client client, String upToken, String key, InputStream stream,
35-
StringMap params, String mime, Configuration configuration) {
35+
StringMap params, String mime, Configuration configuration) {
3636
this.configuration = configuration;
3737
this.client = client;
3838
this.upToken = upToken;

src/test/java/test/com/qiniu/storage/BucketTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,8 @@ public void testChangeFileType() {
638638
//delete the temp file
639639
bucketManager.delete(bucket, keyToChangeType);
640640
} catch (QiniuException e) {
641-
fail(bucket + ":" + key + " > " + keyToChangeType + " >> " + BucketManager.StorageType.INFREQUENCY + " ==> " + e.response.toString());
641+
fail(bucket + ":" + key + " > " + keyToChangeType + " >> "
642+
+ BucketManager.StorageType.INFREQUENCY + " ==> " + e.response.toString());
642643
}
643644
}
644645
}

src/test/java/test/com/qiniu/storage/RecordUploadTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void run() {
6464
e.printStackTrace();
6565
}
6666
}
67-
} .start();
67+
}.start();
6868

6969
final boolean[] ch = new boolean[]{true};
7070
// 显示断点记录文件

0 commit comments

Comments
 (0)