summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfogus <mefogus@gmail.com>2010-11-19 20:19:46 -0500
committerStuart Halloway <stu@thinkrelevance.com>2010-11-29 21:07:40 -0500
commit09d0a20d6c4b705fc6c9b19329e49413f77160a7 (patch)
treede7de8f5b3b9ffb95d4f0fea22e81e0f39721ec1
parent3a3bf705c6d8029f98f82b8cc1d7a3030a3cf5d3 (diff)
removed this ref
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-rw-r--r--test/clojure/test_clojure/java_interop.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clojure/test_clojure/java_interop.clj b/test/clojure/test_clojure/java_interop.clj
index 09273f50..ae197a9f 100644
--- a/test/clojure/test_clojure/java_interop.clj
+++ b/test/clojure/test_clojure/java_interop.clj
@@ -124,12 +124,12 @@
(-> (get-proxy-class Object)
construct-proxy
(init-proxy {})
- (update-proxy {"toString" (fn [this] "chain chain chain")})
+ (update-proxy {"toString" (fn [_] "chain chain chain")})
str)
"chain chain chain"
(-> (proxy [Object] [] (toString [] "superfuzz bigmuff"))
- (update-proxy {"toString" (fn [this] "chain chain chain")})
+ (update-proxy {"toString" (fn [_] "chain chain chain")})
str)
"chain chain chain")))