diff --git a/compiler/cli/src/org/jetbrains/jet/cli/jvm/repl/ReplInterpreter.java b/compiler/cli/src/org/jetbrains/jet/cli/jvm/repl/ReplInterpreter.java index 55c25c5c4ce..c9147b536bf 100644 --- a/compiler/cli/src/org/jetbrains/jet/cli/jvm/repl/ReplInterpreter.java +++ b/compiler/cli/src/org/jetbrains/jet/cli/jvm/repl/ReplInterpreter.java @@ -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);