summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/org/clojure/runtime/RT.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/clojure/runtime/RT.java b/src/org/clojure/runtime/RT.java
index 48ff4ee2..8f9fa679 100644
--- a/src/org/clojure/runtime/RT.java
+++ b/src/org/clojure/runtime/RT.java
@@ -16,8 +16,7 @@ import java.util.Iterator;
public class RT{
- public Object test;
- public Object test(){return null;}
+ static public Symbol T = Symbol.intern("t");
static public Object eq(Object arg1, Object arg2) {
return (arg1 == arg2)?Boolean.TRUE:null;