Fixed clone() in MockTable to match checkTurnStartSetUp()

in RoundControlTest

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@352 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Bennet Gerlach 2011-05-31 18:25:36 +02:00
parent c3b4eef14c
commit ca0696d40c

View file

@ -58,6 +58,8 @@ public class MockTable implements ITable {
}
public MockTable clone() {
if (clonedTable == null)
return this;
return clonedTable;
}