From: Erik V. <ev...@us...> - 2009-11-07 12:10:04
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11224/rails/game Modified Files: OperatingRound.java MapHex.java Log Message: Cleanups Index: OperatingRound.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** OperatingRound.java 5 Nov 2009 22:50:37 -0000 1.75 --- OperatingRound.java 7 Nov 2009 12:09:55 -0000 1.76 *************** *** 1008,1012 **** protected void initTurn() { ! System.out.println("---Starting turn of "+operatingCompany.getName()); setCurrentPlayer(operatingCompany.getPresident()); operatingCompany.initTurn(); --- 1008,1012 ---- protected void initTurn() { ! log.debug("Starting turn of "+operatingCompany.getName()); setCurrentPlayer(operatingCompany.getPresident()); operatingCompany.initTurn(); Index: MapHex.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/MapHex.java,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** MapHex.java 6 Nov 2009 20:23:53 -0000 1.30 --- MapHex.java 7 Nov 2009 12:09:56 -0000 1.31 *************** *** 189,193 **** if (impassableSides == null) impassableSides = new ArrayList<Integer>(4); impassableSides.add(orientation%6); - log.debug("+++Hex "+name+" is impassable on side "+(orientation%6)); } --- 189,192 ---- |