去注释

This commit is contained in:
ag2s20150909 2021-04-23 10:50:48 +08:00
parent 57f95e1408
commit 8a9f742749

View File

@ -146,11 +146,6 @@ public class IOUtil {
//
public static void copy(InputStream in, OutputStream result) throws IOException {
int buffer=in.available();
if(buffer>IOUtil.DEFAULT_BUFFER_SIZE||buffer==0){
buffer=IOUtil.DEFAULT_BUFFER_SIZE;
}
Log.d(TAG,"buffer size:"+buffer);
copy(in, result,DEFAULT_BUFFER_SIZE);
}