use of com.twosigma.beakerx.autocomplete.ClasspathScanner in project beakerx by twosigma.
the class KotlinEvaluator method doResetEnvironment.
@Override
protected void doResetEnvironment() {
String cpp = createClasspath(classPath, outDir);
cps = new ClasspathScanner(cpp);
createRepl();
executorService.shutdown();
executorService = Executors.newSingleThreadExecutor();
}
Aggregations