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?
6
votes
3answers
103 views

Determine unused jars by code coverage?

I have a project with a million jars (well, a lot). They came to me by maven, and I only use a small set of functionality. For cleanness sake, I was wondering with jars I could do without. My first ...
4
votes
5answers
437 views

How do I find out which JAR application is not using?

In our application through the process of developing a lot of JAR files has been collected. How can I filter out those, which are not used by application anymore? On some easy way?
4
votes
2answers
688 views

Find unused code in a Maven modularised project

I have to clean up an old project and general knowledge here is that the project contains lots of unused code that we could remove. That would save some headaches and make maintenance easier. I ...
4
votes
5answers
2k views

How to avoid the “unused param” warning when overriding a method in java 1.4?

In this code : public class MyClass { private Object innerValue; public Object getInnerValue() { return this.innerValue; } public void setInnerValue(Object innerValue) { ...
1
vote
1answer
152 views

Lightweight JVM Instrumentation to find unused code

I was wondering if there is any lightweight way I could instrument a production JVM to gather information over a period of some months to gather statistics on unused code in my code base. Thanks a ...
0
votes
0answers
57 views

Can I make a Java Annotation which “extends” @SuppressWarnings?

I know that it's not possible to extends Java annotations. I've created an annotation for a private field which means that the field is likely to appear unused in the class in which it is declared. ...
0
votes
2answers
73 views

Java Bytecode decompilation — Unused Methods Present?

Say I have private void ThisIsMySecurityMethodPleaseLookHERE() { //security stuff } In my program, but that method is called nowhere in any of the actually executed code. Does it get compiled to ...