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
@@ -1,7 +1,6 @@
package kotlin
import java.util.*
import jet.Iterator
/**
* Returns *true* if all elements match the given *predicate*
@@ -1,7 +1,6 @@
package kotlin
import java.util.*
import jet.Iterator
/** Copies all elements into a [[SortedSet]] */
public inline fun <in T> Iterable<T>.toSortedSet() : SortedSet<T> = toCollection(TreeSet<T>())
@@ -1,7 +1,6 @@
package kotlin.concurrent
import java.util.concurrent.Executor
import jet.Iterator
class FunctionalQueue<T> (
val input: FunctionalList<T> = FunctionalList.emptyList<T>(),
-1
View File
@@ -4,7 +4,6 @@ import kotlin.*
import kotlin.support.*
import java.util.*
import org.w3c.dom.*
import jet.Iterator
// TODO should not need this - its here for the JS stuff
import java.lang.IllegalArgumentException
@@ -8,7 +8,6 @@ import java.io.InputStream
import java.io.StringWriter
import java.io.Writer
import java.util.*
import jet.Iterator
import javax.xml.parsers.DocumentBuilder
import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.transform.OutputKeys