final Triple potentialTriple = potentialIter.next();
BNode potentialMatch = (BNode)potentialTriple.getSubject();
final Graph potentialContext = new GraphNode(potentialMatch, mGraph).getNodeContext();
if (potentialContext.equals(context)) {
removingTriples.addAll(potentialContext);
unGroundedTriples.removeAll(context);
continue SUBJ_BNODE_LOOP;
}
} catch (ClassCastException e) {
continue;
}