summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/proxy.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxy.clj b/src/proxy.clj
index eb1e9963..61cb27d4 100644
--- a/src/proxy.clj
+++ b/src/proxy.clj
@@ -138,7 +138,7 @@ get-proxy-class [& bases]
(let [mm (loop [mm {} c super]
(if c
(recur
- (loop [mm mm meths (seq (. super (getDeclaredMethods)))]
+ (loop [mm mm meths (seq (. c (getDeclaredMethods)))]
(if meths
(let [#^java.lang.reflect.Method meth (first meths)
mods (. meth (getModifiers))