Prune spurious semicolons and redundant implementation declarations

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@865 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Dave Hoover
2009-08-17 21:46:33 +00:00
parent 85ef5ed4f9
commit ad7561dae1
4 changed files with 5 additions and 7 deletions
@@ -892,7 +892,7 @@ public abstract class CardPanel extends VirtualMediaPanel
sprite.setLocation(sprite.getX(), getHandY(sprite)); sprite.setLocation(sprite.getX(), getHandY(sprite));
} }
} }
}; }
/** Listens for mouse interactions with cards. */ /** Listens for mouse interactions with cards. */
protected class CardListener extends MouseInputAdapter protected class CardListener extends MouseInputAdapter
@@ -30,7 +30,6 @@ import com.threerings.crowd.data.PlaceConfig;
import com.threerings.miso.data.ObjectInfo; import com.threerings.miso.data.ObjectInfo;
import com.threerings.whirled.data.Scene;
import com.threerings.whirled.data.SceneImpl; import com.threerings.whirled.data.SceneImpl;
import com.threerings.whirled.data.SceneUpdate; import com.threerings.whirled.data.SceneUpdate;
import com.threerings.whirled.spot.data.Portal; import com.threerings.whirled.spot.data.Portal;
@@ -44,7 +43,7 @@ import static com.threerings.stage.Log.log;
* The implementation of the Stage scene interface. * The implementation of the Stage scene interface.
*/ */
public class StageScene extends SceneImpl public class StageScene extends SceneImpl
implements Scene, SpotScene, Cloneable implements SpotScene, Cloneable
{ {
/** /**
* Creates an instance that will obtain data from the supplied scene * Creates an instance that will obtain data from the supplied scene
@@ -37,7 +37,6 @@ import java.awt.Shape;
import java.awt.Stroke; import java.awt.Stroke;
import java.awt.event.ActionEvent; import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent; import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent; import java.awt.event.MouseEvent;
import java.awt.geom.Ellipse2D; import java.awt.geom.Ellipse2D;
@@ -87,7 +86,7 @@ import static com.threerings.stage.Log.log;
* locations and creating portals. * locations and creating portals.
*/ */
public class EditorScenePanel extends StageScenePanel public class EditorScenePanel extends StageScenePanel
implements EditorModelListener, KeyListener, ChangeListener implements EditorModelListener, ChangeListener
{ {
/** /**
* Constructs the editor scene view panel. * Constructs the editor scene view panel.
@@ -1186,7 +1185,7 @@ public class EditorScenePanel extends StageScenePanel
_locTri.addPoint(-3, -3); _locTri.addPoint(-3, -3);
_locTri.addPoint(3, -3); _locTri.addPoint(3, -3);
_locTri.addPoint(0, 3); _locTri.addPoint(0, 3);
}; }
/** The stroke object used to draw highlighted tiles and coordinates. */ /** The stroke object used to draw highlighted tiles and coordinates. */
protected static final Stroke HIGHLIGHT_STROKE = new BasicStroke(2); protected static final Stroke HIGHLIGHT_STROKE = new BasicStroke(2);
+1 -1
View File
@@ -59,7 +59,7 @@ public abstract class Stat
/** Returns true if this stat is persisted between sessions. */ /** Returns true if this stat is persisted between sessions. */
public boolean isPersistent (); public boolean isPersistent ();
}; }
/** Provides auxilliary information to statistics during the persisting process. */ /** Provides auxilliary information to statistics during the persisting process. */
public static interface AuxDataSource public static interface AuxDataSource