Skip to content

Commit 5a73fb0

Browse files
committed
changed author
1 parent d233e8b commit 5a73fb0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/net/hypercubemc/iris_installer/Downloader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
/**
1414
*
15-
* @author SYSTEM
15+
* @author ims
1616
*/
1717
public class Downloader extends SwingWorker<Void, Void> {
1818

@@ -46,7 +46,7 @@ protected Void doInBackground() throws Exception {
4646
while ((i = in.read(data, 0, 1024)) >= 0) {
4747
totalDataRead = totalDataRead + i;
4848
bout.write(data, 0, i);
49-
49+
5050
int percent = (int) ((totalDataRead * 100) / filesize);
5151

5252
setProgress(percent);

0 commit comments

Comments
 (0)