21 lines
526 B
Java
21 lines
526 B
Java
|
package o;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.io.InputStream;
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public final class grU {
|
||
|
public static void c(InputStream inputStream, OutputStream outputStream) throws IOException {
|
||
|
byte[] bArr = new byte[4096];
|
||
|
while (true) {
|
||
|
int read = inputStream.read(bArr, 0, 4096);
|
||
|
if (read < 0) {
|
||
|
return;
|
||
|
} else {
|
||
|
outputStream.write(bArr, 0, read);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|