StoneSet hat andere Exception

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@230 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-05-10 16:55:25 +02:00
parent 85b5470c05
commit 22a221cb9d

View file

@ -7,8 +7,6 @@ import java.util.Iterator;
import java.util.List;
import java.util.Set;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
import jrummikub.util.Pair;
import static jrummikub.model.StoneSet.Type.*;
@ -219,7 +217,7 @@ public class StoneSet implements Iterable<Stone>, Sizeable {
public void remove() {
// removing stones is impossible
throw new NotImplementedException();
throw new UnsupportedOperationException();
}
};
}