Remove emptyIterator since java already has one

This commit is contained in:
DBotThePony 2025-03-30 23:48:25 +07:00
parent 11e71361f7
commit 61aa3abdfa
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 19 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=3.9.0
projectVersion=3.9.1
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -2,6 +2,7 @@ package ru.dbotthepony.kommons.collect
import ru.dbotthepony.kommons.util.KOptional
import java.util.*
import java.util.Collections.emptyIterator
import java.util.NoSuchElementException
import java.util.function.Predicate
import java.util.stream.Collector
@ -377,24 +378,6 @@ fun <T> Iterator<T>.maybe(): T? {
null
}
private object EmptyIterator : MutableIterator<Nothing> {
override fun hasNext(): Boolean {
return false
}
override fun next(): Nothing {
throw NoSuchElementException()
}
override fun remove() {
throw NoSuchElementException()
}
}
fun <T> emptyIterator(): MutableIterator<T> {
return EmptyIterator as MutableIterator<T>
}
fun <T> iteratorOf(value: T): Iterator<T> {
return object : Iterator<T> {
private var next = true