mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
fix
This commit is contained in:
@@ -52,6 +52,6 @@ public abstract class IoCopier<S, T> {
|
||||
* @return 缓存大小
|
||||
*/
|
||||
protected int bufferSize(long count) {
|
||||
return Math.min(this.bufferSize, (int)count);
|
||||
return (int)Math.min(this.bufferSize, count);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user