mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-01 22:14:01 +03:00
Small fix.
This commit is contained in:
parent
8a762f1d84
commit
d015ab05aa
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public File getFile() {
|
|||
public void downloadFile() throws IOException {
|
||||
try (BufferedInputStream in = new BufferedInputStream(url.openStream()); FileOutputStream fout = new FileOutputStream(file, skip != 0)) {
|
||||
final byte data[] = new byte[IOHelper.BUFFER_SIZE];
|
||||
int count;
|
||||
int count = -1;
|
||||
long timestamp = System.currentTimeMillis();
|
||||
int writed_local = 0;
|
||||
in.skip(skip);
|
||||
|
|
Loading…
Reference in a new issue