diff options
Diffstat (limited to 'src/jvm/clojure/lang/ClassSymbol.java')
-rw-r--r-- | src/jvm/clojure/lang/ClassSymbol.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/jvm/clojure/lang/ClassSymbol.java b/src/jvm/clojure/lang/ClassSymbol.java deleted file mode 100644 index 2bbd6945..00000000 --- a/src/jvm/clojure/lang/ClassSymbol.java +++ /dev/null @@ -1,20 +0,0 @@ -/**
- * Copyright (c) Rich Hickey. All rights reserved.
- * The use and distribution terms for this software are covered by the
- * Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
- * which can be found in the file CPL.TXT at the root of this distribution.
- * By using this software in any fashion, you are agreeing to be bound by
- * the terms of this license.
- * You must not remove this notice, or any other, from this software.
- **/
-
-package clojure.lang;
-
-public class ClassSymbol extends HostSymbol{
-final public String className;
-
-public ClassSymbol(String className) {
- super(className);
- this.className = className.substring(0,className.length()-1); //strip trailing dot
-}
-}
|