From: Erik V. <ev...@us...> - 2010-01-19 19:54:02
|
Update of /cvsroot/rails/18xx/rails/game In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20896/rails/game Modified Files: GameManager.java Log Message: Minor cleanups Index: GameManager.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/GameManager.java,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** GameManager.java 17 Jan 2010 22:49:06 -0000 1.78 --- GameManager.java 19 Jan 2010 19:53:53 -0000 1.79 *************** *** 125,129 **** * in one thread. The key will be set in process(), which is where server * processing currently starts (in the future it will probably be moved ! * to the communication interface that will be added by then). * The key can be retrieved (via NDC.peek()) anywhere. * <p> --- 125,129 ---- * in one thread. The key will be set in process(), which is where server * processing currently starts (in the future it will probably be moved ! * to the communication interface that will be added by then). * The key can be retrieved (via NDC.peek()) anywhere. * <p> *************** *** 177,193 **** /* Some standard tags for conditional attributes */ public static final String VARIANT_KEY = "Variant"; - /* No longer used (temporarily?) - public static final String OPTION_TAG = "GameOption"; - public static final String IF_OPTION_TAG = "IfOption"; - public static final String ATTRIBUTES_TAG = "Attributes"; - */ protected static Logger log = Logger.getLogger(GameManager.class.getPackage().getName()); - /** - * Private constructor. - * - */ public GameManager() { gmName = GM_NAME; --- 177,184 ---- *************** *** 833,837 **** DisplayBuffer.clear(); guiHints.clearVisibilityHints(); ! return true; } --- 824,828 ---- DisplayBuffer.clear(); guiHints.clearVisibilityHints(); ! return true; } |