views:

2143

answers:

2

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?

+2  A: 

I would suggest using FindBugs, which, among other things, shows where classes, methods etc are no longer used.

Martin OConnor
I am not able to find a setting to enable searching for unused classes in FindBugs. Can you please give me a hint?
Roland Schneider
+5  A: 
VonC