refactored Element.reachable()
[sbp.git] / src / edu / berkeley / sbp / Union.java
index db0db7d..b000f95 100644 (file)
@@ -16,8 +16,6 @@ public class Union extends Element implements Iterable<Sequence> {
 
     public Iterator<Sequence> iterator() { return alternatives.iterator(); }
 
-    void reachable(HashSet<Sequence.Position> h) { for(Sequence s : alternatives) s.reachable(h); }
-
     Topology toAtom() {
         if (alternatives.size()==0) throw new RuntimeException("cannot build an Atom from a Union with no productions");
         Topology ret = null;