mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 11:10:50 +00:00
AS3: New P-code editing syntax inspired by RABCDAsm.
AS3: Multiname and namespace editing. AS3: Editing whole trait in one textarea AS3: Removed messages about adding new constants AS3: Modified colors in editor AS3: Highlighting pair parenthesis/bracket AS3: Editing various new P-code parameters
This commit is contained in:
@@ -62,7 +62,7 @@ public class ReReadableInputStream extends InputStream {
|
||||
if (converted == null) {
|
||||
converted = baos.toByteArray();
|
||||
}
|
||||
int ret = converted[(int)pos] & 0xff;
|
||||
int ret = converted[(int) pos] & 0xff;
|
||||
pos++;
|
||||
return ret;
|
||||
}
|
||||
@@ -79,7 +79,7 @@ public class ReReadableInputStream extends InputStream {
|
||||
|
||||
@Override
|
||||
public int available() throws IOException {
|
||||
return (count + is.available()) - (int)pos;
|
||||
return (count + is.available()) - (int) pos;
|
||||
}
|
||||
|
||||
public long length() throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user