Fixed PropertiesFileStats count.
This commit is contained in:
parent
149c425f53
commit
150ef6886d
1 changed files with 3 additions and 0 deletions
|
@ -168,7 +168,10 @@ public class PropertiesFileStats extends ArrayList<PropertiesFileStat>
|
||||||
|
|
||||||
PropertyChecker checker = new PropertyChecker();
|
PropertyChecker checker = new PropertyChecker();
|
||||||
PropertyChecks checks = checker.checkService(service.getInputFile());
|
PropertyChecks checks = checker.checkService(service.getInputFile());
|
||||||
|
stat.setAlertCount(checks.getAlertCount());
|
||||||
stat.setErrorCount(checks.getErrorCount());
|
stat.setErrorCount(checks.getErrorCount());
|
||||||
|
stat.setVoidCount(checks.getVoidCount());
|
||||||
|
stat.setWarningCount(checks.getWarningCount());
|
||||||
|
|
||||||
add(stat);
|
add(stat);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue