From: Erik V. <ev...@us...> - 2008-12-23 20:00:14
|
Update of /cvsroot/rails/18xx/rails/game/specific/_18EU In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27301/rails/game/specific/_18EU Modified Files: StockRound_18EU.java Log Message: Apply new round initialisation logic Index: StockRound_18EU.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_18EU/StockRound_18EU.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** StockRound_18EU.java 13 Dec 2008 08:20:59 -0000 1.18 --- StockRound_18EU.java 23 Dec 2008 20:00:03 -0000 1.19 *************** *** 27,38 **** /** - * Constructor with no parameters, will call super class (StockRound's) Constructor to initialize - * - */ - public StockRound_18EU () { - super (); - } - - /** * Constructor with the GameManager, will call super class (StockRound's) Constructor to initialize * --- 27,30 ---- *************** *** 40,44 **** * */ ! public StockRound_18EU (GameManager aGameManager) { super (aGameManager); } --- 32,36 ---- * */ ! public StockRound_18EU (GameManagerI aGameManager) { super (aGameManager); } *************** *** 483,487 **** PublicCompanyI major = action.getSelectedTargetCompany(); PublicCertificateI cert = null; - Portfolio pool = Bank.getPool(); CashHolder cashDestination = null; // Bank --- 475,478 ---- |