java-decompiler: post-import cleanup (dead code dropped)

This commit is contained in:
Roman Shevchenko
2014-08-29 16:05:51 +04:00
parent 84ea54eb1e
commit 63b8d35d08
160 changed files with 4 additions and 4887 deletions

View File

@@ -94,15 +94,15 @@ public class StructClass {
// constructors
// *****************************************************************************
public StructClass(String filename, boolean own, LazyLoader loader) throws FileNotFoundException, IOException {
public StructClass(String filename, boolean own, LazyLoader loader) throws IOException {
this(new FileInputStream(filename), own, loader);
}
public StructClass(InputStream inStream, boolean own, LazyLoader loader) throws FileNotFoundException, IOException {
public StructClass(InputStream inStream, boolean own, LazyLoader loader) throws IOException {
this(new DataInputFullStream(inStream), own, loader);
}
public StructClass(DataInputFullStream inStream, boolean own, LazyLoader loader) throws FileNotFoundException, IOException {
public StructClass(DataInputFullStream inStream, boolean own, LazyLoader loader) throws IOException {
this.own = own;
this.loader = loader;