From: Mark J S. <kr...@us...> - 2008-12-04 00:55:51
|
Update of /cvsroot/rails/18xx/rails/game/specific/_18EU In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6167/18xx/rails/game/specific/_18EU Modified Files: FinalMinorExchangeRound.java Log Message: Added Constructors for proper initializing Index: FinalMinorExchangeRound.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_18EU/FinalMinorExchangeRound.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FinalMinorExchangeRound.java 30 Jun 2008 20:35:30 -0000 1.3 --- FinalMinorExchangeRound.java 4 Dec 2008 00:55:48 -0000 1.4 *************** *** 19,27 **** OperatingRound_18EU lastOR; ! /** ! * The constructor. ! */ ! public FinalMinorExchangeRound() {} public void start(OperatingRound_18EU lastOR) { ReportBuffer.add("\n" --- 19,41 ---- OperatingRound_18EU lastOR; ! /** ! * Constructor with no parameters, will call super class (StockRound_18EU's) Constructor to initialize ! * ! */ ! public FinalMinorExchangeRound() ! { ! super (); ! } + /** + * Constructor with the GameManager, will call super class (StockRound_18EU's) Constructor to initialize + * + * @param aGameManager The GameManager Object needed to initialize the Stock Round + * + */ + public FinalMinorExchangeRound(GameManager aGameManager) { + super (aGameManager); + } + public void start(OperatingRound_18EU lastOR) { ReportBuffer.add("\n" |