I have a large Eclipse project in which there exist several classes which, although they ceased to be used anywhere, were never marked @Deprecated.
How can I easily find all of these?
|
4
|
I have a large Eclipse project in which there exist several classes which, although they ceased to be used anywhere, were never marked @Deprecated. How can I easily find all of these?
|
||
|
|
|
|
I would suggest using FindBugs, which, among other things, shows where classes, methods etc are no longer used. |
||
|
|
|
|
I also like to use UCDetector
[Bonus]
Bonus: it can also detect cycle dependencies between classes (also a number of other tools -- including Findbugs -- knows how do do that too) |
||
|
|