From aea01d96383ca44d41f1efab9a724e602135f932 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Mon, 23 Jul 2012 18:36:11 +0400 Subject: [PATCH] Replaced non-ASCII symbol to fix compilation. --- .../jet/cli/jvm/compiler/KotlinToJVMBytecodeCompiler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/src/org/jetbrains/jet/cli/jvm/compiler/KotlinToJVMBytecodeCompiler.java b/compiler/cli/src/org/jetbrains/jet/cli/jvm/compiler/KotlinToJVMBytecodeCompiler.java index 958a24fac85..2ad32e41328 100644 --- a/compiler/cli/src/org/jetbrains/jet/cli/jvm/compiler/KotlinToJVMBytecodeCompiler.java +++ b/compiler/cli/src/org/jetbrains/jet/cli/jvm/compiler/KotlinToJVMBytecodeCompiler.java @@ -77,7 +77,7 @@ public class KotlinToJVMBytecodeCompiler { throw new CompileEnvironmentException("No source files where defined"); } - // TODO creating environment copy each time — not good. original environment shouldn't be passed at all + // TODO creating environment copy each time - not good. original environment shouldn't be passed at all CompilerConfiguration compilerConfiguration = configuration.getEnvironment().getConfiguration().copy(); for (String sourceFile : moduleBuilder.getSourceFiles()) { File source = new File(sourceFile);