we dont use scala ...

This commit is contained in:
Florian Scandella
2017-09-17 13:38:44 +02:00
parent 4dd0a4cd96
commit 217cbf0982
2 changed files with 2 additions and 4 deletions
@@ -21,8 +21,6 @@ package appeng.helpers;
import java.util.Iterator;
import scala.NotImplementedError;
public class NonNullArrayIterator<E> implements Iterator<E>
{
@@ -58,6 +56,6 @@ public class NonNullArrayIterator<E> implements Iterator<E>
@Override
public void remove()
{
throw new NotImplementedError();
throw new UnsupportedOperationException();
}
}