This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / NullLiteral.java
diff --git a/Robust/src/Lex/NullLiteral.java b/Robust/src/Lex/NullLiteral.java
deleted file mode 100644 (file)
index a20eb75..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-class NullLiteral extends Literal {
-  NullLiteral() {
-  }
-
-  Symbol token() {
-    return new Symbol(Sym.NULL_LITERAL);
-  }
-
-  public String toString() {
-    return "NullLiteral <null>";
-  }
-}