Object removed from supertypes

This commit is contained in:
Andrey Breslav
2012-01-25 17:33:06 +04:00
parent 3e29aad6dd
commit d00173dc69
2 changed files with 3 additions and 3 deletions
+1 -2
View File
@@ -3,8 +3,7 @@ public open class ArrayList<erased E>(c : java.util.Collection<out E>) : java.ut
java.util.List<E>,
java.util.RandomAccess,
java.lang.Cloneable,
java.io.Serializable,
java.lang.Object {
java.io.Serializable {
public this() {}
public this(initialCapacity : Int) {}
open public fun trimToSize() : Unit {}
+2 -1
View File
@@ -17,4 +17,5 @@ public trait Set<erased E> : java.util.Collection<E> {
override fun clear() : Unit
// override fun equals(o : Any?) : Boolean
// override fun hashCode() : Int
}
}