diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-02-26 14:48:15 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-02-26 14:48:15 +0000 |
commit | b8df9cb2a3b388a80fed68cd0a2934df69b55187 (patch) | |
tree | e87d57cd6c62d97239c0391856b75d3a826c780a /src | |
parent | b0440a219c31267fc09bb00471acf3b3aaf73f5a (diff) |
try using getContextClassLoader in implement
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)))) |