This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / JavaGrammar / Lex / WhiteSpace.java
diff --git a/Robust/JavaGrammar/Lex/WhiteSpace.java b/Robust/JavaGrammar/Lex/WhiteSpace.java
deleted file mode 100644 (file)
index fc87301..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package Lex;
-
-class WhiteSpace extends InputElement {
-  char whitespace;
-  WhiteSpace(char which) { this.whitespace=which; }
-
-  public String toString() { 
-    String s;
-    switch(whitespace) {
-    case ' ':  s = "SP"; break;
-    case '\t': s = "HT"; break;
-    case '\f': s = "FF"; break;
-    case '\n': s = "LT"; break;
-    default:   s = "Unknown Whitespace character."; break;
-    }
-    return "Whitespace <"+s+">";
-  }
-}