Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ public void createInterpreter(String interpreterGroupId, String noteId, String
replClass.getConstructor(new Class[] {Properties.class});
Interpreter repl = constructor.newInstance(p);

ClassLoader cl = ClassLoader.getSystemClassLoader();
repl.setClassloaderUrls(new URL[]{});

synchronized (interpreterGroup) {
Expand All @@ -167,7 +166,7 @@ public void createInterpreter(String interpreterGroupId, String noteId, String
interpreterGroup.put(noteId, interpreters);
}

interpreters.add(new LazyOpenInterpreter(new ClassloaderInterpreter(repl, cl)));
interpreters.add(new LazyOpenInterpreter(repl));
}

logger.info("Instantiate interpreter {}", className);
Expand Down