KT-529 wrong naming of anonimous classes

This commit is contained in:
Alex Tkachman
2011-11-23 11:20:33 +02:00
parent 1c6c5d2bdc
commit 8c842a6d5c
6 changed files with 122 additions and 2 deletions
+10
View File
@@ -1,5 +1,15 @@
namespace std
namespace util {
import java.util.*
val <T> Collection<T>.size : Int
get() = size()
val <T> Collection<T>.empty : Boolean
get() = isEmpty()
}
namespace io {
import java.io.*
import java.nio.charset.*