Removed debug strings
This commit is contained in:
parent
b94ec86a55
commit
54a13eb68a
@ -50,7 +50,6 @@ public class RulesManager {
|
|||||||
List<String> ruleLines = new ArrayList<String>();
|
List<String> ruleLines = new ArrayList<String>();
|
||||||
Path rulesPath = Paths.get("rules/");
|
Path rulesPath = Paths.get("rules/");
|
||||||
if (rulesPath.toFile().exists()) {
|
if (rulesPath.toFile().exists()) {
|
||||||
System.err.println("RULES EXISTS!!!!!!");
|
|
||||||
try (Stream<Path> paths = Files.walk(rulesPath)) {
|
try (Stream<Path> paths = Files.walk(rulesPath)) {
|
||||||
paths
|
paths
|
||||||
.filter(Files::isRegularFile)
|
.filter(Files::isRegularFile)
|
||||||
@ -59,6 +58,7 @@ public class RulesManager {
|
|||||||
String path = rulesPath.relativize(p).toString();
|
String path = rulesPath.relativize(p).toString();
|
||||||
path = path.substring(0, path.length() - ".java".length());
|
path = path.substring(0, path.length() - ".java".length());
|
||||||
ruleLines.add(path);
|
ruleLines.add(path);
|
||||||
|
Utils.out.print(Utils.OUTPUTLEVEL_NODEBUG, "Found external rule: " + p.toAbsolutePath().toString());
|
||||||
System.err.println(path);
|
System.err.println(path);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user