How to find unused/dead code in java projects - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:22:12Z http://stackoverflow.com/feeds/question/162551 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects 12 How to find unused/dead code in java projects knatten 2008-10-02T14:22:52Z 2009-11-17T13:40:44Z <p>What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in use. We do however try to delete as much unused code as possible.</p> <p>Suggestions for general strategies/techniques (other than specific tools) are also appreciated.</p> <p><strong>Edit:</strong> Note that we already use code coverage tools (Clover, IntelliJ), but these are of little help. Dead code still has unit tests, and shows up as covered. I guess an ideal tool would identify clusters of code wich have very little other code depending on it, allowing for docues manual inspection.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162558#162558 1 Answer by MattW. for How to find unused/dead code in java projects MattW. 2008-10-02T14:24:28Z 2008-10-02T14:24:28Z <p>Eclipse can show/highlight code that can't be reached. JUnit can show you code coverage, but you'd need some tests and have to decide if the relevant test is missing or the code is really unused. </p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162561#162561 2 Answer by Vaibhav for How to find unused/dead code in java projects Vaibhav 2008-10-02T14:24:38Z 2008-10-02T14:24:38Z <p>There are tools which profile code and provide code coverage data. This lets you see (as code is run) how much of it is being called. You can get any of these tools to find out how much orphan code you have.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162587#162587 3 Answer by cletus for How to find unused/dead code in java projects cletus 2008-10-02T14:28:07Z 2008-10-02T14:28:07Z <p>In theory, you can't deterministically find unused code. Theres a mathematical proof of this (well, this is a special case of a more general theorem). If you're curious, look up the Halting Problem.</p> <p>This can manifest itself in Java code in many ways:</p> <ul> <li>Loading classes based on user input, config files, database entries, etc;</li> <li>Loading external code;</li> <li>Passing object trees to third party libraries;</li> <li>etc.</li> </ul> <p>That being said, I use IDEA IntelliJ as my IDE of choice and it has extensive analysis tools for findign dependencies between modules, unused methods, unused members, unused classes, etc. Its quite intelligent too like a private method that isn't called is tagged unused but a public method requires more extensive analysis.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162715#162715 9 Answer by Alan for How to find unused/dead code in java projects Alan 2008-10-02T14:47:49Z 2008-10-02T14:47:49Z <p>We've started to use <a href="http://findbugs.sourceforge.net/" rel="nofollow">Find Bugs</a> to help identify some of the funk in our codebase's target-rich environment for refactorings. I would also consider <a href="http://www.headwaysoftware.com/index.php" rel="nofollow">Structure 101</a> to identify spots in your codebase's architecture that are too complicated, so you know where the real swamps are.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162719#162719 5 Answer by Adrian for How to find unused/dead code in java projects Adrian 2008-10-02T14:48:19Z 2008-10-06T23:44:33Z <p>I would instrument the running system to keep logs of code usage, and then start inspecting code that is not used for months or years.</p> <p>For example if you are interested in unused classes, all classes could be instrumented to log when instances are created. And then a small script could compare these logs against the complete list of classes to find unused classes.</p> <p>Of course, if you go at the method level you should keep performance in mind. For example, the methods could only log their first use. I dont know how this is best done in Java. We have done this in Smalltalk, which is a dynamic language and thus allows for code modification at runtime. We instrument all methods with a logging call and uninstall the logging code after a method has been logged for the first time, thus after some time no more performance penalties occur. Maybe a similar thing can be done in Java with static boolean flags...</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/162904#162904 10 Answer by Mikezx6r for How to find unused/dead code in java projects Mikezx6r 2008-10-02T15:14:09Z 2008-10-02T15:14:09Z <p>An Eclipse plugin that works reasonably well is <a href="http://www.ucdetector.org/" rel="nofollow">Unused Code Detector</a>.</p> <p>It processes an entire project, or a specific file and shows various unused/dead code methods, as well as suggesting visibility changes (i.e. a public method that could be protected or private).</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/163269#163269 1 Answer by Vladimir Dyuzhev for How to find unused/dead code in java projects Vladimir Dyuzhev 2008-10-02T16:16:09Z 2008-10-02T16:16:09Z <p>User coverage tools, such as EMMA. But it's not static tool (i.e. it requires to actually run the application through regression testing, and through all possible error cases, which is, well, impossible :) )</p> <p>Still, EMMA is very useful.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/163292#163292 4 Answer by jamesh for How to find unused/dead code in java projects jamesh 2008-10-02T16:21:17Z 2008-10-02T16:21:17Z <p>Use a test coverage tool to instrument your codebase, then run the application itself, not the tests. </p> <p><a href="http://emma.sourceforge.net/" rel="nofollow">Emma</a> and <a href="http://www.eclemma.org/" rel="nofollow">Eclemma</a> will give you nice reports of what percentage of what classes are run for any given run of the code.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/321354#321354 1 Answer by Vihung for How to find unused/dead code in java projects Vihung 2008-11-26T16:40:09Z 2008-11-26T16:40:09Z <p>Code coverage tools, such as Emma, Cobertura, and Clover, will instrument your code and record which parts of it gets invoked by running a suite of tests. This is very useful, and should be an integral part of your development process. It will help you identify how well your test suite covers your code.</p> <p>However, this is not the same as identifying real dead code. It only identifies code that is covered (or not covered) by tests. This can give you false positives (if your tests do not cover all scenarios) as well as false negatives (if your tests access code that is actually never used in a real world scenario).</p> <p>I imagine the best way to really identify dead code would be to instrument your code with a coverage tool in a live running environment and to analyse code coverage over an extended period of time. </p> <p>If you are runnning in a load balanced redundant environment (and if not, why not?) then I suppose it would make sense to only instrument one instance of your application and to configure your load balancer such that a random, but small, portion of your users run on your instrumented instance. If you do this over an extended period of time (to make sure that you have covered all real world usage scenarios - such seasonal variations), you should be able to see exactly which areas of your code are accessed under real world usage and which parts are really never accessed and hence dead code. </p> <p>I have never personally seen this done, and do not know how the aforementioned tools can be used to instrument and analyse code that is not being invoked through a test suite - but I am sure they can be.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/489013#489013 0 Answer by graveca for How to find unused/dead code in java projects graveca 2009-01-28T19:38:13Z 2009-01-28T19:38:13Z <ul> <li>FindBugs is excellent for this sort of thing. </li> <li>PMD (Project Mess Detector) is another tool that can be used.</li> </ul> <p>However, neither can find <strong>public static methods</strong> that are unused in a workspace. If anyone knows of such a tool then please let me know.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/489032#489032 2 Answer by skiphoppy for How to find unused/dead code in java projects skiphoppy 2009-01-28T19:45:32Z 2009-01-28T19:45:32Z <p>One thing I've been known to do in Eclipse, on a single class, is change all of its methods to private and then see what complaints I get. For methods that are used, this will provoke errors, and I return them to the lowest access level I can. For methods that are unused, this will provoke warnings about unused methods, and those can then be deleted. And as a bonus, you often find some public methods that can and should be made private.</p> <p>But it's very manual.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/575572#575572 2 Answer by bear for How to find unused/dead code in java projects bear 2009-02-22T19:39:29Z 2009-02-22T19:39:29Z <p>"UCDetector (Unnecessary Code Detector) is a eclipse PlugIn tool to find unnecessary (dead) public java code."</p> <p><a href="http://www.ucdetector.org/" rel="nofollow">http://www.ucdetector.org/</a></p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/579202#579202 0 Answer by Peter Lawrey for How to find unused/dead code in java projects Peter Lawrey 2009-02-23T20:31:11Z 2009-02-23T20:31:11Z <p>IntelliJ has code analysis tools for detecting code which is unused. You should try making as many fields/methods/classes as non-public as possible and that will show up more unused methods/fields/classes</p> <p>I would also try to locate duplicate code as a way of reducing code volume.</p> <p>My last suggestion is try to find open source code which if used would make your code simpler.</p> http://stackoverflow.com/questions/162551/how-to-find-unused-dead-code-in-java-projects/1748961#1748961 0 Answer by Chris Chedgey for How to find unused/dead code in java projects Chris Chedgey 2009-11-17T13:40:44Z 2009-11-17T13:40:44Z <p>The Structure101 <a href="http://www.headwaysoftware.com/help/java/index.html?perspectives%5Fslice.html" rel="nofollow">slice perspective</a> will give a list (and dependency graph) of any "orphans" or "orphan <a href="http://www.headwaysoftware.com/help/java/index.html?perspectives%5Fgroup.html" rel="nofollow">groups</a>" of classes or packages that have no dependencies to or from the "main" cluster. </p>