we dont use scala ... (#3097)

This commit is contained in:
fscan 2017-09-18 17:45:47 +08:00 committed by xsun2001
parent 83e1e8beed
commit 0120df7f8c
1 changed files with 1 additions and 3 deletions

View File

@ -19,8 +19,6 @@
package appeng.helpers;
import scala.NotImplementedError;
import java.util.Iterator;
@ -58,6 +56,6 @@ public class NonNullArrayIterator<E> implements Iterator<E>
@Override
public void remove()
{
throw new NotImplementedError();
throw new UnsupportedOperationException();
}
}