break Node out of GSS
[sbp.git] / src / edu / berkeley / sbp / Parser.java
index 34d7da9..fa2f7d1 100644 (file)
@@ -43,7 +43,7 @@ public abstract class Parser<Token, NodeType> {
                 PrintWriter p = new PrintWriter(new OutputStreamWriter(fos));
                 GraphViz gv = new GraphViz();
                 for(Object n : next)
-                    ((GSS.Phase.Node)n).toGraphViz(gv);
+                    ((Node)n).toGraphViz(gv);
                 gv.dump(p);
                 p.flush();
                 p.close();