From 8757e3763b086621251419b5999b553dc5120bde Mon Sep 17 00:00:00 2001 From: Alexey Sedunov Date: Mon, 15 Apr 2013 15:53:10 +0400 Subject: [PATCH] Remove redundant tests --- .../branched/unfolding/asymmetricReturn/simpleIf.kt | 3 --- .../branched/unfolding/asymmetricReturn/simpleIf.kt.after | 3 --- .../unfolding/asymmetricReturn/simpleIfWithBlocks.kt | 6 ------ .../unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after | 6 ------ 4 files changed, 18 deletions(-) delete mode 100644 idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt delete mode 100644 idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after delete mode 100644 idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt delete mode 100644 idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt deleted file mode 100644 index 741973c35c6..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt +++ /dev/null @@ -1,3 +0,0 @@ -fun test(n: Int): String { - return if (n == 1) "one" else "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after deleted file mode 100644 index 28edafffc4f..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIf.kt.after +++ /dev/null @@ -1,3 +0,0 @@ -fun test(n: Int): String { - if (n == 1) return "one" else return "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt deleted file mode 100644 index 5777e6c7ac1..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt +++ /dev/null @@ -1,6 +0,0 @@ -fun test(n: Int): String { - return if (n == 1) { - println("***") - "one" - } else "two" -} \ No newline at end of file diff --git a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after b/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after deleted file mode 100644 index d750043923c..00000000000 --- a/idea/testData/codeInsight/codeTransformations/branched/unfolding/asymmetricReturn/simpleIfWithBlocks.kt.after +++ /dev/null @@ -1,6 +0,0 @@ -fun test(n: Int): String { - if (n == 1) { - println("***") - return "one" - } else return "two" -} \ No newline at end of file