DroidFish: Removed incorrect comment.

This commit is contained in:
Peter Osterlund 2017-01-06 07:01:29 +01:00
parent 1b1977973a
commit a612d06a0b

View File

@ -132,7 +132,6 @@ public class Game {
* @param str The move or command to process.
* @return Pair where first item is true if str was understood, false otherwise.
* Second item is move played, or null if no move was played. */
/** Like processString, but also returns the move played, if any. */
public final Pair<Boolean, Move> processString(String str) {
if (getGameState() != GameState.ALIVE)
return new Pair<Boolean,Move>(false, null);