From 3762b5cba7cfb7eccd2d0051ac8d0aaf4901c275 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Wed, 11 Mar 2020 21:20:42 +0100 Subject: [PATCH] Minor, remove extraneous field CodegenTestCase.coroutinesPackage After a795c38eb7, this field is available in the base class KotlinBaseTest. --- .../tests/org/jetbrains/kotlin/codegen/CodegenTestCase.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/CodegenTestCase.java b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/CodegenTestCase.java index 49f7d506497..ddde9c6276e 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/CodegenTestCase.java +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/codegen/CodegenTestCase.java @@ -22,7 +22,6 @@ import org.jetbrains.kotlin.TestsCompiletimeError; import org.jetbrains.kotlin.backend.common.output.OutputFile; import org.jetbrains.kotlin.backend.common.output.SimpleOutputFileCollection; import org.jetbrains.kotlin.checkers.CompilerTestLanguageVersionSettings; -import org.jetbrains.kotlin.test.KotlinBaseTest; import org.jetbrains.kotlin.checkers.utils.CheckerTestUtil; import org.jetbrains.kotlin.cli.common.CLIConfigurationKeys; import org.jetbrains.kotlin.cli.common.output.OutputUtilsKt; @@ -86,7 +85,6 @@ public abstract class CodegenTestCase extends KotlinBaseTest additionalDependencies = null; - protected String coroutinesPackage = ""; protected ConfigurationKind configurationKind = ConfigurationKind.JDK_ONLY;