Adjust various testData to remove/charAt transformation

This commit is contained in:
Denis Zharkov
2015-10-11 12:40:39 +03:00
parent 6d864e0854
commit a76a8fcc3f
20 changed files with 30 additions and 30 deletions

View File

@@ -3,7 +3,7 @@ open class KList<E> : MutableList<E> {
throw UnsupportedOperationException()
}
override fun remove(o: Any?): Boolean {
override fun remove(o: E): Boolean {
throw UnsupportedOperationException()
}
@@ -35,7 +35,7 @@ open class KList<E> : MutableList<E> {
throw UnsupportedOperationException()
}
override fun remove(index: Int): E {
override fun removeAt(index: Int): E {
throw UnsupportedOperationException()
}

View File

@@ -29,7 +29,7 @@ open class KList : MutableList<String> {
throw UnsupportedOperationException()
}
override fun remove(o: Any?): Boolean {
override fun remove(o: String): Boolean {
throw UnsupportedOperationException()
}
@@ -61,7 +61,7 @@ open class KList : MutableList<String> {
throw UnsupportedOperationException()
}
override fun remove(index: Int): String {
override fun removeAt(index: Int): String {
throw UnsupportedOperationException()
}