From 5a873432d9d308fc427789433a418eb86a3971dc Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Mon, 3 Oct 2016 17:35:20 +0300 Subject: [PATCH] J2K: AbstractBytecodeTextTest.java rename (cherry picked from commit 8edd7be) --- ...tTest.java => AbstractBytecodeTextTest.kt} | 24 +++++++------------ 1 file changed, 9 insertions(+), 15 deletions(-) rename compiler/tests-common/org/jetbrains/kotlin/codegen/{AbstractBytecodeTextTest.java => AbstractBytecodeTextTest.kt} (93%) diff --git a/compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.java b/compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.kt similarity index 93% rename from compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.java rename to compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.kt index c5ed88a909e..0b76ff27b05 100644 --- a/compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.java +++ b/compiler/tests-common/org/jetbrains/kotlin/codegen/AbstractBytecodeTextTest.kt @@ -16,21 +16,15 @@ package org.jetbrains.kotlin.codegen; -import com.intellij.openapi.util.io.FileUtil; -import com.intellij.openapi.util.text.StringUtil; -import kotlin.text.Charsets; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; -import org.jetbrains.kotlin.test.ConfigurationKind; -import org.jetbrains.kotlin.utils.ExceptionUtilsKt; - -import java.io.File; -import java.util.ArrayList; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Map; -import java.util.regex.Matcher; -import java.util.regex.Pattern; +import org.jetbrains.annotations.NotNull +import org.jetbrains.annotations.Nullable +import org.jetbrains.kotlin.test.ConfigurationKind +import java.io.File +import java.util.* +import java.util.List +import java.util.Map +import java.util.regex.Matcher +import java.util.regex.Pattern public abstract class AbstractBytecodeTextTest extends CodegenTestCase { private static final Pattern AT_OUTPUT_FILE_PATTERN = Pattern.compile("^\\s*//\\s*@(.*):$");