x86Cow / javaProjectJournal

Useless control flow detected JAVA-W1047
Anti-pattern
Minor
a year agoa year old
This loop block can be removed
 3public class Entries {
 4    ArrayList<Entry> entries = new ArrayList<Entry>();
 5    public Entries() {
 6        for(int i = 0; i < 0; i++) { 7        } 8
 9    }
10}