dissasembly progress percent view

better text tags editing - parameters
This commit is contained in:
Jindra Petk
2013-04-30 22:45:51 +02:00
parent fd854991f8
commit f18305bb9e
24 changed files with 1035 additions and 356 deletions

View File

@@ -81,4 +81,8 @@ public class ReReadableInputStream extends InputStream {
public int available() throws IOException {
return (count + is.available()) - pos;
}
public long length() throws IOException {
return count + is.available();
}
}