This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Lex / FloatLiteral.java
diff --git a/Robust/src/Lex/FloatLiteral.java b/Robust/src/Lex/FloatLiteral.java
deleted file mode 100644 (file)
index 99abf52..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-package Lex;
-
-import java_cup.runtime.Symbol;
-import Parse.Sym;
-
-class FloatLiteral extends NumericLiteral {
-  FloatLiteral(float f) { this.val = new Float(f); }
-
-  Symbol token() { return new Symbol(Sym.FLOATING_POINT_LITERAL, val); }
-}