From: Mark J S. <kr...@us...> - 2008-12-04 00:45:31
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5810/18xx/rails/game Modified Files: OperatingRound.java Log Message: Update to include Constructors. Index: OperatingRound.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** OperatingRound.java 3 Dec 2008 20:15:15 -0000 1.46 --- OperatingRound.java 4 Dec 2008 00:45:23 -0000 1.47 *************** *** 110,121 **** /** ! * The constructor. ! * ! * @param operate If false, only the privates pay out. This applies if the ! * Start Packet has not yet been sold completely. */ public OperatingRound() { ! } ! public void start(boolean operate, String orNumber) { --- 110,120 ---- /** ! * Constructor with no parameters, call the super Class (Round's) Constructor with no parameters ! * */ public OperatingRound() { ! super (); ! } ! public void start(boolean operate, String orNumber) { |