Skip to content
This repository was archived by the owner on Nov 21, 2020. It is now read-only.

Commit f051d2b

Browse files
committed
fix: modify order of params
1 parent 28eb7d0 commit f051d2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/code4everything/boot/web/http/HttpUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ public static <T> Response<T> upload(byte[] bytes, String storage, String name,
823823
*
824824
* @since 1.1.0
825825
*/
826-
public static <T> Response<T> upload(BootFileService<T> service, byte[] bytes, String name, String storage,
826+
public static <T> Response<T> upload(BootFileService<T> service, byte[] bytes, String storage, String name,
827827
boolean md5) {
828828
return upload(service, bytes, storage, name, md5, null, false);
829829
}

0 commit comments

Comments
 (0)