From: <aki...@us...> - 2008-08-02 07:12:39
|
Revision: 4689 http://gridarta.svn.sourceforge.net/gridarta/?rev=4689&view=rev Author: akirschbaum Date: 2008-08-02 07:12:47 +0000 (Sat, 02 Aug 2008) Log Message: ----------- Remove MainControl.getGameObjectSpells(). Modified Paths: -------------- trunk/crossfire/src/cfeditor/CMainControl.java trunk/daimonin/src/daieditor/CMainControl.java trunk/src/app/net/sf/gridarta/MainControl.java trunk/src/test/net/sf/gridarta/map/DefaultMapModelTest.java Modified: trunk/crossfire/src/cfeditor/CMainControl.java =================================================================== --- trunk/crossfire/src/cfeditor/CMainControl.java 2008-08-02 07:12:11 UTC (rev 4688) +++ trunk/crossfire/src/cfeditor/CMainControl.java 2008-08-02 07:12:47 UTC (rev 4689) @@ -764,11 +764,6 @@ new MapPreview(gridartaObjectsFactory.newSimpleLevelRenderer(currentMap.getMapModel()).getFullImage()); } - /** {@inheritDoc} */ - public Spells<GameObjectSpell<GameObject, MapArchObject, Archetype>> getGameObjectSpells() { - return gameObjectSpells; - } - /** * Returns the current top map view we are working with. * @return the current top map view we are working with, or Modified: trunk/daimonin/src/daieditor/CMainControl.java =================================================================== --- trunk/daimonin/src/daieditor/CMainControl.java 2008-08-02 07:12:11 UTC (rev 4688) +++ trunk/daimonin/src/daieditor/CMainControl.java 2008-08-02 07:12:47 UTC (rev 4689) @@ -946,11 +946,6 @@ new MapPreview(gridartaObjectsFactory.newSimpleLevelRenderer(currentMap.getMapModel()).getFullImage()); } - /** {@inheritDoc} */ - public Spells<GameObjectSpell<GameObject, MapArchObject, Archetype>> getGameObjectSpells() { - return gameObjectSpells; - } - /** * Returns the current top map view we are working with. * @return the current top map view we are working with, or Modified: trunk/src/app/net/sf/gridarta/MainControl.java =================================================================== --- trunk/src/app/net/sf/gridarta/MainControl.java 2008-08-02 07:12:11 UTC (rev 4688) +++ trunk/src/app/net/sf/gridarta/MainControl.java 2008-08-02 07:12:47 UTC (rev 4689) @@ -100,12 +100,6 @@ @NotNull String getCollectedDirectory(); - /** - * Return the game object based spell objects. - * @return The game object based spell objects. - */ - Spells<GameObjectSpell<G, A, R>> getGameObjectSpells(); - /** Exits from the program. */ void doExit(); Modified: trunk/src/test/net/sf/gridarta/map/DefaultMapModelTest.java =================================================================== --- trunk/src/test/net/sf/gridarta/map/DefaultMapModelTest.java 2008-08-02 07:12:11 UTC (rev 4688) +++ trunk/src/test/net/sf/gridarta/map/DefaultMapModelTest.java 2008-08-02 07:12:47 UTC (rev 4689) @@ -453,11 +453,6 @@ } /** {@inheritDoc} */ - public Spells<GameObjectSpell<TestGameObject, TestMapArchObject, TestArchetype>> getGameObjectSpells() { - throw new AssertionError(); - } - - /** {@inheritDoc} */ public void doExit() { throw new AssertionError(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |