Fixed PropertiesFileStats count.

This commit is contained in:
Christian P. MOMON 2020-11-14 04:33:14 +01:00
parent 149c425f53
commit 150ef6886d

View file

@ -168,7 +168,10 @@ public class PropertiesFileStats extends ArrayList<PropertiesFileStat>
PropertyChecker checker = new PropertyChecker();
PropertyChecks checks = checker.checkService(service.getInputFile());
stat.setAlertCount(checks.getAlertCount());
stat.setErrorCount(checks.getErrorCount());
stat.setVoidCount(checks.getVoidCount());
stat.setWarningCount(checks.getWarningCount());
add(stat);
}