From 62f393db95b6e267fb048bbaa187c41602f79ac4 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 4 Dec 2008 23:29:42 +0000 Subject: [PATCH] Hold the phone. I already wrote this code. Sheesh. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5573 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/crowd/server/PlaceRegistry.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/java/com/threerings/crowd/server/PlaceRegistry.java b/src/java/com/threerings/crowd/server/PlaceRegistry.java index 3376db80e..046f0e7c5 100644 --- a/src/java/com/threerings/crowd/server/PlaceRegistry.java +++ b/src/java/com/threerings/crowd/server/PlaceRegistry.java @@ -167,21 +167,6 @@ public class PlaceRegistry return _pmgrs.values().iterator(); } - /** - * Locates the {@link PlaceManager} that manages the place occupied by the supplied body, - * obtains the canonical {@link OccupantInfo} record for that body, runs your updater to effect - * any desired modifications to the occupant info record and then broadcasts the updates by - * calling {@link PlaceManager#updateOccupantInfo}. - * - * @return true if the update was sent, false if the supplied body is not currently in a place. - */ - public boolean updateOccupantInfo ( - BodyObject body, PlaceManager.OccInfoUpdater updater) - { - PlaceManager pmgr = getPlaceManager(body.getPlaceOid()); - return (pmgr == null) ? false : pmgr.updateOccupantInfo(body.getOid(), updater); - } - // from interface ShutdownManager.Shutdowner public void shutdown () {