Skip to content

Commit

Permalink
[LAS-38] Corrected classloader instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
pedela committed May 7, 2014
1 parent 43d9faa commit 60d9ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/i5/las2peer/tools/L2pNodeLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ static L2pNodeLauncher launchSingle ( String[] args, File logDir, L2pClassLoader
*/
private static L2pClassLoader setupClassLoader(String[] serviceDirectory) {
return new L2pClassLoader(
new FileSystemRepository (serviceDirectory), L2pNodeLauncher.class.getClassLoader()
new FileSystemRepository (serviceDirectory, true), L2pNodeLauncher.class.getClassLoader()
);
}

Expand Down

0 comments on commit 60d9ab7

Please sign in to comment.