Skip to content

Commit

Permalink
fixed FileClassLoader to set current thread context class loader as p…
Browse files Browse the repository at this point in the history
…arent class loader
  • Loading branch information
mikosik committed Apr 13, 2014
1 parent b920af4 commit 59e3497
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class FileClassLoader extends ClassLoader {
private final Map<String, SFile> binaryNameToFile;

public FileClassLoader(Map<String, SFile> binaryNameToFile) {
super(Thread.currentThread().getContextClassLoader());
this.binaryNameToFile = binaryNameToFile;
}

Expand Down

0 comments on commit 59e3497

Please sign in to comment.