Reverted explicitly specifying visibility modifier while override
This commit is contained in:
@@ -389,7 +389,7 @@ class CollectionTest {
|
||||
class IterableWrapper<T>(collection : java.lang.Iterable<T>) : java.lang.Iterable<T> {
|
||||
private val collection = collection
|
||||
|
||||
public override fun iterator(): java.util.Iterator<T> {
|
||||
override fun iterator(): java.util.Iterator<T> {
|
||||
return collection.iterator().sure()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user