Implement remove in BackstringIterator. Fixes #201.

This commit is contained in:
Olof Larsson 2015-01-25 23:44:00 +01:00
parent 910995d9b5
commit ad529d7542

View File

@ -60,6 +60,12 @@ public class BackstringIterator<E> implements Iterator<E>
return this.set.convertFromString(current);
}
@Override
public void remove()
{
throw new UnsupportedOperationException();
}
// -------------------------------------------- //
// EXTRAS
// -------------------------------------------- //