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. ...
10
votes
1answer
143 views

How can I detect dead code in an enterprise Java project (Java + JSP + Javascript)?

Does anyone know of a tool for detecting dead code in a Java EE project? I've looked into lots of tools that do this well for pure Java projects, but nothing seems to really handle projects which ...
6
votes
2answers
201 views

Java Compiler: Stop complaining about dead code

For testing purposes, I often start typing some code in an already existing project. So, my code I want to test comes before all the other code, like this: public static void main(String[] args) { ...
6
votes
3answers
461 views

Java: Dead code elimination

I'd like to know how Java would handle the following scenario: Suppose I have a class called Debug, which looks like this: public class Debug { private static final boolean isAssertEnabled = ...
5
votes
6answers
6k views

Unreachable code error vs. dead code warning in Java under Eclipse?

Does anyone know why: public void foo() { System.out.println("Hello"); return; System.out.println("World!"); } Would be reported as an "unreachable error" under Eclipse, but public ...
3
votes
3answers
249 views

How to disable dead code elimination in the Java compiler?

This may seem a strange question... Why would anyone want to disable such a thing? But I know what I'm doing (and why I want/need to do this) and I really want to disable dead code elimination. Is it ...
1
vote
6answers
217 views

Unreachable statement in java while loop

While loking up "dead code" thread here dead code warning in eclipse I tried the following simple java code: public class Test2 { public static void main(String[] args) { int x = 0; ...
1
vote
2answers
104 views

Finding unused code in Java with AspectJ

I have an idea for finding unused ('dead') methods in a large Java project but I need help deriving an implementation. Use AspectJ to add a 'before' aspect to ALL methods in project packages. The ...
1
vote
3answers
633 views

Eclipse's Dead Code warning when it is reachable?

Why Eclipse gives me a dead code warning in the fourth line of the following method? How can it not be reachable? private void writeToSequenceFile() { try { CustomFileWriter nBatchWriter = new ...
0
votes
1answer
111 views

Eclipse marks lines as dead code

I have this function with some dead code, marked by Eclipse. I have two lines that check a & b. Lines that check b are marked as null. public int[] runThis(List<Integer> buildIds, ...
0
votes
4answers
116 views

Dead code warning

while(true){ try { if(Calendar.DATE == X){ startTask(); } long delay = timeUntilNextCheck(); Thread.sleep(delay); } catch (Throwable t) ...
0
votes
4answers
98 views

Minimize code in reference to read/write operations

I started with the following code: class Vereinfache2_edit { public static void main(String[] args) { int c1 = Integer.parseInt(args[0]); int c2 = Integer.parseInt(args[1]); ...
0
votes
1answer
204 views

Dead Code error

I'm getting a dead code error in this Java code snippet, using Eclipse: public void rebirthAction() { Player p = new Player(null); Equipment e = new Equipment(); Skills s = new ...