bug fixes on the flow graph.
[IRC.git] / Robust / src / Analysis / SSJava / NodeTupleSet.java
index 3040a15ae80d8a2b5389020abcab6cb39fb062da..eaa0e6e9ae74d51c555d3af6c418b88bcda09a17 100644 (file)
@@ -28,6 +28,10 @@ public class NodeTupleSet {
     list.add(tuple);
   }
 
+  public void removeTuple(NTuple<Descriptor> tuple) {
+    list.remove(tuple);
+  }
+
   public Iterator<NTuple<Descriptor>> iterator() {
     return list.iterator();
   }