diff --git a/src/java/com/threerings/whirled/spot/data/SpotSceneImpl.java b/src/java/com/threerings/whirled/spot/data/SpotSceneImpl.java index 8820c274..eab7bb87 100644 --- a/src/java/com/threerings/whirled/spot/data/SpotSceneImpl.java +++ b/src/java/com/threerings/whirled/spot/data/SpotSceneImpl.java @@ -66,7 +66,7 @@ public class SpotSceneImpl if (portalId == -1) { portalId = _smodel.defaultEntranceId; } - return (Portal)_portals.get(portalId); + return _portals.get(portalId); } // documentation inherited from interface @@ -76,7 +76,7 @@ public class SpotSceneImpl } // documentation inherited from interface - public Iterator getPortals () + public Iterator getPortals () { return _portals.values().iterator(); } @@ -152,7 +152,7 @@ public class SpotSceneImpl protected SpotSceneModel _smodel; /** A mapping from portal id to portal. */ - protected HashIntMap _portals = new HashIntMap(); + protected HashIntMap _portals = new HashIntMap(); /** We don't allow more than ~32k portals in a scene. Things would * slow down *way* before we got there. */