[Megameknet-cvs] MegaMekNET/src/client/gui InnerStellarMap.java,1.34,1.35
Status: Inactive
Brought to you by:
mcwizard
From: Immanuel S. <im...@us...> - 2005-02-22 22:08:00
|
Update of /cvsroot/megameknet/MegaMekNET/src/client/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2428/src/client/gui Modified Files: InnerStellarMap.java Log Message: removed obsolete function Index: InnerStellarMap.java =================================================================== RCS file: /cvsroot/megameknet/MegaMekNET/src/client/gui/InnerStellarMap.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** InnerStellarMap.java 20 Feb 2005 18:03:23 -0000 1.34 --- InnerStellarMap.java 22 Feb 2005 22:07:52 -0000 1.35 *************** *** 52,56 **** import client.MMClient; import common.House; - import common.Influences; import common.Planet; import common.PlanetEnvironment; --- 52,55 ---- *************** *** 1074,1090 **** /** - * Solves events of data fetches by adding the changes to the current - * change set. - */ - public void dataFetched(Map changes) { - for (Iterator it = changes.keySet().iterator(); it.hasNext();) { - Integer id = (Integer)it.next(); - Influences addinf = (Influences) changes.get(id); - Influences oldinf = (Influences) blinkingPlanets.get(id); - if (oldinf != null) addinf.add(oldinf); - blinkingPlanets.put(id,addinf); - } - } - /** * @return Returns the changesSinceLastRefresh. */ --- 1073,1076 ---- |