From: Mark S. <mar...@gm...> - 2008-10-12 13:49:07
|
Down in StockRound, I came across what looks a lot like an Infinite Recursion routine: 1049 /*----- METHODS TO BE CALLED TO SET UP THE NEXT TURN -----*/ 1050 1051 /** 1052 * @return The index of the player that has the turn. 1053 */ 1054 public int getCurrentPlayerIndex() { 1055 return getCurrentPlayerIndex(); 1056 } What is this supposed to do? It does not make sense they way this is. Mark |