From 150ef6886d3f6706a6bf5562949df898550e84dd Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Sat, 14 Nov 2020 04:33:14 +0100 Subject: [PATCH] Fixed PropertiesFileStats count. --- .../statoolinfos/stats/propertyfiles/PropertiesFileStats.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fr/devinsy/statoolinfos/stats/propertyfiles/PropertiesFileStats.java b/src/fr/devinsy/statoolinfos/stats/propertyfiles/PropertiesFileStats.java index 85a79ed..472a2ea 100644 --- a/src/fr/devinsy/statoolinfos/stats/propertyfiles/PropertiesFileStats.java +++ b/src/fr/devinsy/statoolinfos/stats/propertyfiles/PropertiesFileStats.java @@ -168,7 +168,10 @@ public class PropertiesFileStats extends ArrayList 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); }