Tagged Questions
19
votes
3answers
6k views
Finding unused jars used in an eclipse project
Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?
8
votes
2answers
407 views
C++, find unused code and includes
Are there any no-cost tools (or direct Eclipse CDT plugins) that scan C++ code for unused functions, methods, variables, includes...?
I only found this stuff for C# and Java, but I'd like to have it ...
5
votes
2answers
896 views
Eclipse - How to show warning for unused method parameter?
I am using Eclipse v3.5.
In previous Eclipse versions i remember if i have defined a method with a parameter and didn't use it internally a warning appears, like this :
public void myMethod( int x ) ...
0
votes
4answers
384 views
identifying php unused variables
I have seen the bellow question and was wondering if there is something like it for eclipse.
Also how can I make sure that this kind of errors get's thrown into my trigger error function so that I ...