New J2K: do not save import statements in files as we print fqNames for calls

This may cause conflicts on shortening fq references post-processing step
This commit is contained in:
Ilya Kirillov
2019-09-24 11:52:19 +03:00
parent e3b7b41544
commit f9fac0acf5
54 changed files with 54 additions and 162 deletions
@@ -1,5 +1,3 @@
import java.util.ArrayList
class Owner {
var list: MutableList<String> = ArrayList()
}
@@ -8,4 +6,4 @@ class Updater {
fun update(owner: Owner) {
owner.list.add("")
}
}
}