mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +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 {
|
public void downloadFile() throws IOException {
|
||||||
try (BufferedInputStream in = new BufferedInputStream(url.openStream()); FileOutputStream fout = new FileOutputStream(file, skip != 0)) {
|
try (BufferedInputStream in = new BufferedInputStream(url.openStream()); FileOutputStream fout = new FileOutputStream(file, skip != 0)) {
|
||||||
final byte data[] = new byte[IOHelper.BUFFER_SIZE];
|
final byte data[] = new byte[IOHelper.BUFFER_SIZE];
|
||||||
int count;
|
int count = -1;
|
||||||
long timestamp = System.currentTimeMillis();
|
long timestamp = System.currentTimeMillis();
|
||||||
int writed_local = 0;
|
int writed_local = 0;
|
||||||
in.skip(skip);
|
in.skip(skip);
|
||||||
|
|
Loading…
Reference in a new issue