Skip to content

Commit e500fe1

Browse files
committed
change format
1 parent 691d6e3 commit e500fe1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/com/qiniu/io/IO.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ public void put(String key, InputStreamAt isa, PutExtra extra, JSONObjectRet ret
5454
}
5555
}
5656
if (extra.checkCrc != PutExtra.UNUSE_CRC32) m.addField("crc32", extra.crc32 + "");
57-
for (Map.Entry<String, String> i: extra.params.entrySet()) m.addField(i.getKey(), i.getValue());
57+
for (Map.Entry<String, String> i: extra.params.entrySet()) {
58+
m.addField(i.getKey(), i.getValue());
59+
}
5860

5961
m.addField("token", mUptoken);
6062
m.addFile("file", extra.mimeType, key == null ? "?" : key, isa);

0 commit comments

Comments
 (0)