summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-05-01 19:19:34 +0000
committerRich Hickey <richhickey@gmail.com>2006-05-01 19:19:34 +0000
commit73a4030ef0568f5fc8938c137a71ac4e990a90d7 (patch)
tree3e1e40a163fea381cbdd6036c19471b6842f6aef /src
parente7f3719fcbe74e0f923243f9628f7450ebed2e4f (diff)
added RT.T
Diffstat (limited to 'src')
-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;