Fixed all tests
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@531 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
26086f1130
commit
bafbd6cac1
3 changed files with 32 additions and 16 deletions
|
@ -18,7 +18,7 @@ public class MockTable implements ITable {
|
|||
/** */
|
||||
public boolean valid = false;
|
||||
/** */
|
||||
public MockTable clonedTable;
|
||||
public ITable clonedTable;
|
||||
/** */
|
||||
public List<Pair<StoneSet, Position>> sets = new ArrayList<Pair<StoneSet, Position>>();
|
||||
|
||||
|
@ -58,7 +58,7 @@ public class MockTable implements ITable {
|
|||
return findStoneSet.get(stone);
|
||||
}
|
||||
|
||||
public MockTable clone() {
|
||||
public ITable clone() {
|
||||
if (clonedTable == null)
|
||||
return this;
|
||||
return clonedTable;
|
||||
|
|
Reference in a new issue