mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 16:51:03 +00:00
ASDec: Small changes to eliminate notices
This commit is contained in:
@@ -342,7 +342,7 @@ public class ProxyFrame extends JFrame implements ActionListener, CatchedListene
|
||||
FileOutputStream fos = new FileOutputStream(f);
|
||||
fos.write(hdr);
|
||||
byte buf[] = new byte[2048];
|
||||
int count = 0;
|
||||
int count;
|
||||
while ((count = data.read(buf)) > 0) {
|
||||
fos.write(buf, 0, count);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user