Remove warning for running the compiler under Java 6/7

Now the compiler won't even start, so no need to check this manually.
This commit is contained in:
Dmitry Jemerov
2017-04-07 18:11:48 +02:00
parent 5a7278b856
commit 406714a1f4
9 changed files with 1 additions and 25 deletions
@@ -82,9 +82,6 @@ public abstract class KotlinIntegrationTestBase extends TestCaseWithTmpdir {
content = normalizePath(content, getKotlinProjectHome(), "[KotlinProjectHome]");
content = content.replaceAll(Pattern.quote(KotlinCompilerVersion.VERSION), "[KotlinVersion]");
content = StringUtil.convertLineSeparators(content);
content = Pattern.compile("^.+running the Kotlin compiler under Java 6 or 7 is unsupported and will no longer be possible in a future update\\.\n", Pattern.MULTILINE)
.matcher(content)
.replaceAll("");
return content;
}