(chore) cleanup

This commit is contained in:
Andreas Penski (init) 2019-02-12 13:49:12 +01:00
parent fb7849a2c1
commit b2bac69a48

View file

@ -231,7 +231,7 @@ public class CommandLineApplication {
try { try {
return Files.list(d).filter(path -> path.toString().endsWith(".xml")).collect(Collectors.toList()); return Files.list(d).filter(path -> path.toString().endsWith(".xml")).collect(Collectors.toList());
} catch (IOException e) { } catch (IOException e) {
throw new IllegalStateException("IOException while liste directory content. Can not determine test targets.", e); throw new IllegalStateException("IOException while list directory content. Can not determine test targets.", e);
} }
} }