From: Erik V. <ev...@us...> - 2009-08-28 20:24:48
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28789/rails/game Modified Files: Bank.java Log Message: Minor change in imports Index: Bank.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/Bank.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Bank.java 28 Nov 2008 19:46:17 -0000 1.9 --- Bank.java 28 Aug 2009 20:24:39 -0000 1.10 *************** *** 1,5 **** package rails.game; ! import java.util.*; import org.apache.log4j.Logger; --- 1,5 ---- package rails.game; ! import java.util.List; import org.apache.log4j.Logger; *************** *** 64,68 **** /** * Central method for transferring all cash. ! * * @param from Who pays the money (null = Bank). * @param to Who received the money (null = Bank). --- 64,68 ---- /** * Central method for transferring all cash. ! * * @param from Who pays the money (null = Bank). * @param to Who received the money (null = Bank). *************** *** 162,168 **** if (cert.isInitiallyAvailable()) { ipo.addCertificate(cert); ! } else { unavailable.addCertificate(cert); ! } } } --- 162,168 ---- if (cert.isInitiallyAvailable()) { ipo.addCertificate(cert); ! } else { unavailable.addCertificate(cert); ! } } } *************** *** 256,260 **** /** * Get the maximum share percentage that may be sold to the Bank Pool. ! * * @return The maximum percentage. */ --- 256,260 ---- /** * Get the maximum share percentage that may be sold to the Bank Pool. ! * * @return The maximum percentage. */ |