{
ElementGraph next = iterator.next();
assertNotNull( next );
next.writeDOT( getPlanPath() + "/pipeline/" + count + "-graph.dot" );
Transformed<ElementGraph> result = removeTransformer.transform( next );
result.getEndGraph().writeDOT( getPlanPath() + "/pipeline/" + count + "-cleaned-graph.dot" );
count++;
}