removed unnecessary import jet.Iterator

This commit is contained in:
Svetlana Isakova
2012-08-29 15:10:57 +04:00
parent 726bcb5465
commit a3194e9a46
29 changed files with 0 additions and 29 deletions
@@ -2,7 +2,6 @@ package foo
import java.util.*
import java.lang.*
import jet.Iterator
public inline fun <T, C: Collection<in T>> Iterator<T>.takeWhileTo(result: C, predicate: (T) -> Boolean) : C {
for (element in this) if (predicate(element)) result.add(element) else break