issues = readIssues(reader, new IssueFilter[0]);
}else{
reader.skipValue();
}
}
reader.endObject();
Map<String, IntWrapper> countsByRule=new HashMap<>();
Map<String, IntWrapper> countsBySeverity=new HashMap<>();
Map<Severity, Set<Rule>> rulesBySeverity=new HashMap<>();
for (Issue issue : issues) {
if(countsByRule.containsKey(issue.ruleKey())) {