fix classpath construction in repl

This commit is contained in:
Stepan Koltsov
2012-06-09 00:48:58 +04:00
parent 8c7a879e65
commit 084175722b
@@ -105,10 +105,10 @@ public class ReplInterpreter {
try {
if (compilerDependencies.getRuntimeJar() != null) {
classpath.add(compilerDependencies.getRuntimeJar().toURI().toURL());
}
for (File extra : extraClasspath) {
classpath.add(extra.toURI().toURL());
}
for (File extra : extraClasspath) {
classpath.add(extra.toURI().toURL());
}
} catch (Exception e) {
throw ExceptionUtils.rethrow(e);