vote up 6 vote down star
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?

flag

74% accept rate

2 Answers

vote up 2 vote down check

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

link|flag
vote up 3 vote down

I also like to use UCDetector

alt text

UCDetector (Unecessary Code Detector) is a Open Source eclipse PlugIn Tool to find unecessary (dead) public java code. It also tries to make code final, protected or private.

[Bonus]

UCDetector also finds cyclic dependencies between classes.

Bonus: it can also detect cycle dependencies between classes

(also a number of other tools -- including Findbugs -- knows how do do that too)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.