Skip to content

Commit

Permalink
got rid of references to old PLAYER_KEY constant (this is now a prefe…
Browse files Browse the repository at this point in the history
…rence)
  • Loading branch information
bokowski committed Mar 12, 2010
1 parent 5c43216 commit e200ec1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
* at a time to play the {@link IGame}.
*
* To enter the queue, you need to call
* {@link ContestPlatform#enterPlayerQueue(String)}. Before you do this you need to
* set your {@link IPlayer#MY_PLAYER_KEY}.
* {@link ContestPlatform#enterPlayerQueue(String)}.
*
*/
public interface IPlayerQueue extends IGameObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@

/**
* Thrown when a user attempts to command the robot when it is not their turn.
* If you want to play the {@link IGame}, you need to register and set your
* {@link IPlayer#MY_PLAYER_KEY} and get in line to play by calling
* {@link ContestPlatform#enterPlayerQueue(String)}.
* If you want to play the {@link IGame}, you need to register and get in line
* to play by calling {@link ContestPlatform#enterPlayerQueue(String)}.
*
* @see ContestPlatform#setRobotWheelVelocity(int, int, String)
*/
Expand All @@ -26,5 +25,4 @@ public NotYourTurnException(String string) {
super(string);
}


}

0 comments on commit e200ec1

Please sign in to comment.