Don't add import after insertion function with fqn

This commit is contained in:
Nikolay Krasko
2012-02-08 12:53:56 +04:00
parent 04220935e0
commit e8ffaa28f3
7 changed files with 69 additions and 63 deletions
@@ -0,0 +1,7 @@
package some
import jettesting.*
fun other() {
data.topLevelFu<caret>
}
@@ -0,0 +1,4 @@
package jettesting.data
fun topLevelFunction() {
}
@@ -0,0 +1,7 @@
package some
import jettesting.*
fun other() {
data.topLevelFunction()
}