I have big project my manager dedicated to me for remove unused Classes form the project.
i finding good tool for it which give me list of classes which are not used in project..
can apache hama do it?? or suggest any other tool
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can try
Unused Code Detector
An eclipse plugin which might help you. To add to that if the classes are being used via reflection then there will be some problems.
Also read:
The problems found by UCDetector, are only suggestions. Before changing code, you should really know what you are doing! If UCDetector tells you, that there are no references your code still may be used by:
Change visibility may cause problems with inheritance, reflection, instantiation…
It’s good idea to do a full text search in workspace for the piece of code, you want to change.