diff --git a/src/java/com/threerings/bureau/server/BureauRegistry.java b/src/java/com/threerings/bureau/server/BureauRegistry.java index e95e3c4d6..13d8ab02f 100644 --- a/src/java/com/threerings/bureau/server/BureauRegistry.java +++ b/src/java/com/threerings/bureau/server/BureauRegistry.java @@ -137,21 +137,11 @@ public class BureauRegistry // add the client factory, but later, after all the other modules have been initialized _omgr.postRunnable(new Runnable() { public void run () { - addClientFactory(_clmgr); + _clmgr.setClientFactory(new BureauClientFactory(_clmgr.getClientFactory())); } }); } - /** - * Install the bureau client factory in the manager, delegating to the current factory - * for non-bureau connections. - */ - @Deprecated public void addClientFactory (ClientManager clmgr) - { - clmgr.setClientFactory( - new BureauClientFactory(clmgr.getClientFactory())); - } - /** * Check the credentials to make sure this is one of our bureaus. * @return null if all's well, otherwise a string describing the authentication failure