public void removeFalsePositives(ExamplesTable falsePositivesTable) {
for (Map<String,String> row : falsePositivesTable.getRows()) {
Integer pluginId = Integer.parseInt(row.get("PluginID"));
String hostname = row.get("Hostname");
Issue issue = issues.get(pluginId);
if (issue != null) {
issue.getHosts().remove(hostname);
if (issue.getHosts().size() == 0) {
issues.remove(pluginId);
}
}
}
}