KT-1426 Implement "Optimize Imports" in plugin - tests and small fix for aliases.

This commit is contained in:
Nikolay Krasko
2012-03-16 19:41:44 +04:00
parent 76cc231cb2
commit fda2bc25dc
15 changed files with 219 additions and 23 deletions
@@ -0,0 +1,10 @@
import java.util.ArrayList
import java.util.ArrayList as SomeThing
import java.io as JavaIO
import java.io.*
class Action {
fun test() {
val test : ArrayList<Int>? = null
}
}