Remove return value of Table.pickUpStone()

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@229 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-10 16:53:44 +02:00
parent fa00c661d5
commit 85b5470c05
7 changed files with 20 additions and 21 deletions

View file

@ -15,7 +15,9 @@ public class MockPlayer implements IPlayer {
/**
* @param name
* @param color
* the player name
* @param color
* the player color
*/
public MockPlayer(String name, Color color) {
hand = new MockHand();

View file

@ -22,9 +22,8 @@ public class MockTable implements ITable {
public List<Pair<StoneSet, Position>> sets = new ArrayList<Pair<StoneSet, Position>>();
@Override
public Pair<StoneSet, StoneSet> pickUpStone(Stone stone) {
public void pickUpStone(Stone stone) {
// TODO Auto-generated method stub
return null;
}
@Override