Once again produces code that compiles

This commit is contained in:
Adam
2016-02-28 11:44:24 -05:00
parent a97ee8881c
commit 7b46ae596f

View File

@@ -41,11 +41,13 @@ public class UnusedFields implements Deobfuscator
}
}
}
if (get == 0)
return true;
return false;
// for only checking 'get' wed need a way to remove field initialization in constructors/class initializers
return get + set == 0;
// if (get == 0)
// return true;
//
// return false;
}
@Override