Skip to content

Commit

Permalink
hotfix for classloading, force new loader in all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
richhickey committed May 18, 2010
1 parent 6506709 commit 2c2ed38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jvm/clojure/lang/Compiler.java
Expand Up @@ -5313,7 +5313,7 @@ public static Object eval(Object form) throws Exception{

public static Object eval(Object form, boolean freshLoader) throws Exception{
boolean createdLoader = false;
if(freshLoader)//!LOADER.isBound())
if(true)//!LOADER.isBound())
{
Var.pushThreadBindings(RT.map(LOADER, RT.makeClassLoader()));
createdLoader = true;
Expand Down

0 comments on commit 2c2ed38

Please sign in to comment.