1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Formatting.

This commit is contained in:
Cedric Beust 2015-11-12 03:43:58 -08:00
parent a7695ff0e6
commit 1e1b6c9fdd

View file

@ -267,7 +267,8 @@ public class Main {
}
}
private void copyToStreamWithProgress(InputStream inputStream, OutputStream outputStream, long contentLength, String url) throws IOException {
private void copyToStreamWithProgress(InputStream inputStream, OutputStream outputStream, long contentLength,
String url) throws IOException {
int bytesRead;
long bytesSoFar = 0;
byte[] buffer = new byte[100_000];