diff --git a/DroidFish/src/org/petero/droidfish/gamelogic/Game.java b/DroidFish/src/org/petero/droidfish/gamelogic/Game.java index ca7d83f..22097ec 100644 --- a/DroidFish/src/org/petero/droidfish/gamelogic/Game.java +++ b/DroidFish/src/org/petero/droidfish/gamelogic/Game.java @@ -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 processString(String str) { if (getGameState() != GameState.ALIVE) return new Pair(false, null);