Fix compilation errors #19

Closed
fkoppe wants to merge 46 commits from dev/client_koppe into development
Showing only changes of commit f3894a5058 - Show all commits

View File

@@ -136,4 +136,18 @@ public int getIndexInHome(Piece piece) {
}
return -1;
}
/**
* This method returns the homeNodes
*
* @return the homeNodes
*/
public boolean hasPieceInWaitingArea() {
for (Piece piece : waitingArea) {
if (piece != null) {
return true;
}
}
return false;
}
}