Temporary added explicit imports of java.util.Collections into stdlib

This commit is contained in:
Valentin Kipyatkov
2014-12-25 16:11:14 +03:00
parent 0b701950ac
commit 817b86a820
16 changed files with 30 additions and 0 deletions
@@ -43,6 +43,7 @@ fun List<GenericFunction>.writeTo(file: File, builder: GenericFunction.() -> Str
its.append("package kotlin\n\n")
its.append("$COMMON_AUTOGENERATED_WARNING\n\n")
its.append("import java.util.*\n\n")
its.append("import java.util.Collections // TODO: it's temporary while we have java.util.Collections in js\n\n")
for (t in this.sort()) {
its.append(t.builder())
}