diff --git a/src/java/com/threerings/parlor/game/server/GameManager.java b/src/java/com/threerings/parlor/game/server/GameManager.java index 44ed1120..a4ab07c1 100644 --- a/src/java/com/threerings/parlor/game/server/GameManager.java +++ b/src/java/com/threerings/parlor/game/server/GameManager.java @@ -613,7 +613,7 @@ public class GameManager extends PlaceManager /** * Called by the client when the player is ready for the game to start. This method is - * dispatched dynamically by {@link #messageReceived}. + * dispatched dynamically by {@link PlaceManager#messageReceived}. */ public void playerReady (BodyObject caller) { diff --git a/src/java/com/threerings/puzzle/drop/client/DropBoardView.java b/src/java/com/threerings/puzzle/drop/client/DropBoardView.java index 5c26e26a..91887aff 100644 --- a/src/java/com/threerings/puzzle/drop/client/DropBoardView.java +++ b/src/java/com/threerings/puzzle/drop/client/DropBoardView.java @@ -298,7 +298,7 @@ public abstract class DropBoardView extends PuzzleBoardView /** * Returns true if the piece that is supposed to be at the specified * coordinates is not yet there but is actually en route to that - * location (due to a call to {@link #movePiece}). + * location (due to a call to {@link #movePiece(Sprite,int,int,int,int,long)}). */ protected boolean isMoving (int px, int py) { diff --git a/src/java/com/threerings/stage/data/StageLocation.java b/src/java/com/threerings/stage/data/StageLocation.java index 7a0ad216..d132f7fc 100644 --- a/src/java/com/threerings/stage/data/StageLocation.java +++ b/src/java/com/threerings/stage/data/StageLocation.java @@ -43,7 +43,7 @@ public class StageLocation extends SimpleStreamableObject /** The user's orientation (defined by {@link DirectionCodes}). */ public byte orient; - /** {@link #toString} helper function. */ + /** {@link Object#toString} helper function. */ public String orientToString () { return DirectionUtil.toShortString(orient); diff --git a/src/java/com/threerings/stage/tools/editor/EditorScenePanel.java b/src/java/com/threerings/stage/tools/editor/EditorScenePanel.java index 0e0d324c..f3b0082f 100644 --- a/src/java/com/threerings/stage/tools/editor/EditorScenePanel.java +++ b/src/java/com/threerings/stage/tools/editor/EditorScenePanel.java @@ -1014,7 +1014,7 @@ public class EditorScenePanel extends StageScenePanel /** * Converts the supplied screen coordinates into tile coordinates for - * an object tile. (See {@link #updateTileCoords}.) + * an object tile. (See {@link MisoScenePanel#updateTileCoords}.) * * @return true if the tile coordinates have changed. */