remove some unnecessary !! from stdlib

This commit is contained in:
Alex Tkachman
2012-09-26 19:19:44 +02:00
parent e2d514907a
commit 804e3769ff
11 changed files with 18 additions and 15 deletions
+1 -1
View File
@@ -409,7 +409,7 @@ class CollectionTest {
private val collection = collection
override fun iterator(): Iterator<T> {
return collection.iterator()!!
return collection.iterator()
}
}
}