Merge pull request #5 from wafflecoffee/patch-1

Remove debug printlns in MidnightConfig
This commit is contained in:
Motschen
2021-11-20 10:17:57 +00:00
committed by GitHub

View File

@@ -140,8 +140,6 @@ public abstract class MidnightConfig {
Number value = 0;
boolean inLimits = false;
System.out.println(((isNumber ^ s.isEmpty())));
System.out.println(!s.equals("-") && !s.equals("."));
info.error = null;
if (!(isNumber && s.isEmpty()) && !s.equals("-") && !s.equals(".")) {
value = f.apply(s);
@@ -400,4 +398,4 @@ public abstract class MidnightConfig {
return fieldAttributes.getAnnotation(Entry.class) == null;
}
}
}
}