Corrected/removed tests related to on-the-fly import optimization

This commit is contained in:
Valentin Kipyatkov
2015-07-21 08:50:18 +03:00
parent b612e7a6b0
commit edcb330281
16 changed files with 6 additions and 95 deletions
@@ -1,5 +0,0 @@
package bar;
public interface Bar {
}
@@ -1,5 +0,0 @@
package bar;
public interface Other {
}
@@ -1,9 +0,0 @@
package foo;
import bar.Bar;
import bar.Other;
import java.util.ArrayList;
public class Foo {
abstract public Bar foo(ArrayList<Integer> list, Other other);
}
@@ -1,7 +0,0 @@
package foo
class Impl: Foo() {
<caret>
}
// KT-4732 Override/Implement action does not add all imports when "Optimize imports on the fly" is enabled
@@ -1,13 +0,0 @@
package foo
import bar.Bar
import bar.Other
import java.util.ArrayList
class Impl: Foo() {
override fun foo(list: ArrayList<Int>?, other: Other?): Bar? {
<selection><caret>throw UnsupportedOperationException()</selection>
}
}
// KT-4732 Override/Implement action does not add all imports when "Optimize imports on the fly" is enabled