diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj index d5cfea51..052ccefa 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -1167,7 +1167,7 @@ array [& items] (defn make-proxy [classes method-map] (. java.lang.reflect.Proxy - (newProxyInstance (. (identity clojure.lang.Compiler) (getClassLoader)) + (newProxyInstance (.. Thread (currentThread) (getContextClassLoader)) (into-array classes) (new clojure.lang.ProxyHandler method-map)))) |