Stdlib rename: List.indexOf(T), List.lastIndexOf(T), MutableCollection.removeAll(Collection<T>), MutableCollection.retainAll(Collection<T>)

This commit is contained in:
Mikhail Glukhikh
2015-10-12 15:53:22 +03:00
parent ed5ba01e85
commit 78cfeb0d7d
49 changed files with 244 additions and 226 deletions
@@ -30,11 +30,11 @@ class A1 : MutableCollection<String> {
throw UnsupportedOperationException()
}
override fun removeAll(c: Collection<Any?>): Boolean {
override fun removeAll(c: Collection<String>): Boolean {
throw UnsupportedOperationException()
}
override fun retainAll(c: Collection<Any?>): Boolean {
override fun retainAll(c: Collection<String>): Boolean {
throw UnsupportedOperationException()
}