From: Erik V. <ev...@us...> - 2009-01-15 20:53:39
|
Update of /cvsroot/rails/18xx/rails/game/move In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14080/rails/game/move Modified Files: MapChange.java Log Message: Fixed code to remove compiler warnings Index: MapChange.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/move/MapChange.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MapChange.java 11 Jan 2009 17:24:46 -0000 1.1 --- MapChange.java 15 Jan 2009 20:53:28 -0000 1.2 *************** *** 1,4 **** /* $Header$ ! * * Created on 19-Jul-2006 * Change Log: --- 1,4 ---- /* $Header$ ! * * Created on 19-Jul-2006 * Change Log: *************** *** 6,10 **** package rails.game.move; - import java.util.HashMap; import java.util.Map; --- 6,9 ---- *************** *** 12,16 **** * This Move class handles adding an entry to a 2-D Map (a Map of Maps, or a * matrix). An Undo will remove the second key, but not the first key. ! * * @author Erik Vos */ --- 11,15 ---- * This Move class handles adding an entry to a 2-D Map (a Map of Maps, or a * matrix). An Undo will remove the second key, but not the first key. ! * * @author Erik Vos */ *************** *** 34,37 **** --- 33,37 ---- } + @Override public boolean execute() { *************** *** 41,44 **** --- 41,45 ---- } + @Override public boolean undo() { |