Implement remove in BackstringIterator. Fixes #201.
This commit is contained in:
parent
910995d9b5
commit
ad529d7542
@ -60,6 +60,12 @@ public class BackstringIterator<E> implements Iterator<E>
|
|||||||
return this.set.convertFromString(current);
|
return this.set.convertFromString(current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void remove()
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
// -------------------------------------------- //
|
// -------------------------------------------- //
|
||||||
// EXTRAS
|
// EXTRAS
|
||||||
// -------------------------------------------- //
|
// -------------------------------------------- //
|
||||||
|
Loading…
Reference in New Issue
Block a user