checkpoint
[sbp.git] / src / edu / berkeley / sbp / Element.java
index f88ce87..7be02af 100644 (file)
@@ -11,8 +11,6 @@ import java.lang.ref.*;
 public abstract class Element {
 
     /** if this element always matches exactly one token, return a topology covering exactly those possible tokens, otherwise <tt>null</tt> */
-    abstract Topology toAtom();
-    public Topology toAtom0() { return toAtom(); }
     Forest epsilonForm() { throw new Error("no epsilon form: " + this); }
     final boolean possiblyEpsilon(Walk.Cache cache) {
         Boolean ret = cache==null ? null : cache.possiblyEpsilon.get(this);