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); }