Merge branch 'master' of github.com:JetBrains/kotlin

This commit is contained in:
James Strachan
2012-04-03 17:56:49 +01:00
47 changed files with 116 additions and 159 deletions
+1 -1
View File
@@ -410,7 +410,7 @@ class CollectionTest {
class IterableWrapper<T>(collection : java.lang.Iterable<T>) : java.lang.Iterable<T> {
private val collection = collection
override fun iterator(): java.util.Iterator<T> {
public override fun iterator(): java.util.Iterator<T> {
return collection.iterator().sure()
}
}