removed unnecessary import jet.Iterator
This commit is contained in:
@@ -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>(),
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user