AS1/2 better deobfuscation

code formatting
This commit is contained in:
Jindra Petk
2013-03-10 06:03:15 +01:00
parent 959a413a72
commit 4c1485808f
164 changed files with 1083 additions and 666 deletions

View File

@@ -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;
}
}