mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 08:16:31 +00:00
AS1/2 better deobfuscation
code formatting
This commit is contained in:
@@ -74,6 +74,6 @@ public class ReReadableInputStream extends InputStream {
|
||||
|
||||
@Override
|
||||
public int available() throws IOException {
|
||||
return (pos < count ? count - pos : 0) + is.available();
|
||||
return (count + is.available()) - pos;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user