Search Results

4
votes
7answers
241 views

What standard optimization refactoring can I do to my Java application?

I have a semi big Java application. It's written quite poorly and I suspect there are quite a lot of simple things I can do that will clean things up a bit and improve performance. For exam …
0
votes

How to find unused/dead code in java projects

FindBugs is excellent for this sort of thing. PMD (Project Mess Detector) is another tool that can be used. However, neither can find public static methods …