From ec0084ef61e04cb091db8b9c5417cd0d83fe7fb2 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 5 Mar 2019 10:24:56 +0300 Subject: [PATCH] Minor: remove outdated ant mentioning --- .../kotlin/codegen/forTestCompile/ForTestCompileRuntime.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java index f65b1c18449..70af2ca8d50 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/forTestCompile/ForTestCompileRuntime.java @@ -98,7 +98,7 @@ public class ForTestCompileRuntime { @NotNull private static File assertExists(@NotNull File file) { if (!file.exists()) { - throw new IllegalStateException(file + " does not exist. Run 'ant dist'"); + throw new IllegalStateException(file + " does not exist. Run 'gradlew dist'"); } return file; }