Tagged Questions

59
votes
17answers
22k views

How to find unused/dead code in java projects

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. ...
7
votes
4answers
1k views

How can you find unused functions in Python code?

So you've got some legacy code lying Python around in a fairly hefty project. How can you find and delete dead functions? I've seen these two references: Find unused code and Tool to find unused ...