From ae639022030070068461ac0661b6a65495d99240 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 30 Mar 2009 23:09:12 +0000 Subject: [PATCH] Fixes for asdoc (which is a piece of shit, kthx). git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@807 c613c5cb-e716-0410-b11b-feb51c14d237 --- .../whirled/client/persist/SceneRepository.as | 22 +++++++------------ .../whirled/data/DefaultSceneConfig.as | 13 +++++------ 2 files changed, 13 insertions(+), 22 deletions(-) diff --git a/src/as/com/threerings/whirled/client/persist/SceneRepository.as b/src/as/com/threerings/whirled/client/persist/SceneRepository.as index 6fcf2052..946a7cb0 100644 --- a/src/as/com/threerings/whirled/client/persist/SceneRepository.as +++ b/src/as/com/threerings/whirled/client/persist/SceneRepository.as @@ -24,11 +24,9 @@ package com.threerings.whirled.client.persist { import flash.errors.IOError; import com.threerings.whirled.data.SceneModel; -import com.threerings.whirled.util.NoSuchSceneError; /** - * The scene repository provides access to a persistent repository of - * scene information. + * The scene repository provides access to a persistent repository of scene information. * * @see SceneModel */ @@ -37,30 +35,26 @@ public interface SceneRepository /** * Fetches the model for the scene with the specified id. * - * @exception IOException thrown if an error occurs attempting to load - * the scene data. - * @exception NoSuchSceneException thrown if no scene exists with the - * specified scene id. + * @exception IOError thrown if an error occurs attempting to load the scene data. + * @exception NoSuchSceneError thrown if no scene exists with the specified scene id. */ function loadSceneModel (sceneId :int) :SceneModel; - //throws IOException, NoSuchSceneException; + //throws IOError, NoSuchSceneError; /** * Updates or inserts this scene model as appropriate. * - * @exception IOException thrown if an error occurs attempting to - * access the repository. + * @exception IOError thrown if an error occurs attempting to access the repository. */ function storeSceneModel (model :SceneModel) :void; - //throws IOException; + //throws IOError; /** * Deletes the specified scene model from the repository. * - * @exception IOException thrown if an error occurs attempting to - * access the repository. + * @exception IOError thrown if an error occurs attempting to access the repository. */ function deleteSceneModel (sceneId :int) :void; - //throws IOException; + //throws IOError; } } diff --git a/src/as/com/threerings/whirled/data/DefaultSceneConfig.as b/src/as/com/threerings/whirled/data/DefaultSceneConfig.as index 435f8675..8afc87e5 100644 --- a/src/as/com/threerings/whirled/data/DefaultSceneConfig.as +++ b/src/as/com/threerings/whirled/data/DefaultSceneConfig.as @@ -22,17 +22,14 @@ package com.threerings.whirled.data { import com.threerings.crowd.data.PlaceConfig; -import com.threerings.whirled.client.SceneController; /** - * The default scene config simply causes the default scene manager and - * controller to be created. A user of the Whirled services would most - * likely extend the default scene config. + * The default scene config simply causes the default scene manager and controller to be created. A + * user of the Whirled services would most likely extend the default scene config. * - *

Note that this place config won't even work on the client side - * because it instantiates a {@link SceneController} which is an abstract - * class. It is used only for testing the server side and as a placeholder - * in case standard scene configuration information is one day needed. + *

Note that this place config won't even work on the client side because it instantiates a + * SceneController which is an abstract class. It is used only for testing the server side and as a + * placeholder in case standard scene configuration information is one day needed. */ public class DefaultSceneConfig extends PlaceConfig {