}
private void filterToolOutput(FitsIdentity section, List<ToolOutput> results) {
ListIterator<ToolOutput> iter = results.listIterator();
while ( iter.hasNext() ) {
ToolOutput result = iter.next();
//if the identity section doesn't contain the results from the tool remove it
if(!section.hasOutputFromTool(result.getTool().getToolInfo())) {
iter.remove();
}
}
}