refactoring to eliminate Token.result()
[sbp.git] / src / edu / berkeley / sbp / Token.java
index 196f5ca..07edde3 100644 (file)
@@ -10,10 +10,6 @@ import edu.berkeley.sbp.*;
 /** a token of input -- note that this represents an <i>actual input token</i> rather than an <tt>Element</tt> which <i>matches</i> a token */
 public interface Token {
 
-    // FIXME!!! remove this
-    /** converts this <tt>Token</tt> into a standalone result (ie for a non-rewriting pattern) */
-    public String result();
-
     /** this is declared abstract as a way of forcing subclasses to provide a thoughtful implementation */
     public abstract String toString();