Tagged Questions
14
votes
3answers
2k views
How to detect unused methods and #import in Objective-C
After working a long time on an iPhone app, I realized that my code it's quite dirty, containing several #import and methods that are not called or useful at all.
I would like to know if there's any ...
0
votes
2answers
73 views
Java Bytecode decompilation — Unused Methods Present?
Say I have
private void ThisIsMySecurityMethodPleaseLookHERE() {
//security stuff
}
In my program, but that method is called nowhere in any of the actually executed code. Does it get compiled to ...