don't deprecate AbstractIterator for now

This commit is contained in:
Dmitry Jemerov
2015-03-02 18:19:56 +01:00
parent afafdb31ee
commit f41a0a328f
@@ -16,7 +16,7 @@ private enum class State {
* A base class to simplify implementing iterators so that implementations only have to implement [computeNext]
* to implement the iterator, calling [done] when the iteration is complete.
*/
deprecated public abstract class AbstractIterator<T>: Iterator<T> {
public abstract class AbstractIterator<T>: Iterator<T> {
private var state = State.NotReady
private var nextValue: T? = null