deepsourcestatus / test-repository

Collection and array length checks must be sensible JAVA-W1005
Anti-pattern
Major
1 occurrence in this check
This check will always return false
59    HashMap<URL, ConfigData> configs = new HashMap<>();
60
61    List<String> ls = config.lines().collect(Collectors.toList());
62    for (Integer i = new Integer(0); ls.size() < 0; i++) {63      String line = ls.get(i);
64      String[] data = line.split(" ");
65      URL url = null;