TableManagerProvider is no more.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@258 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-03-22 00:39:58 +00:00
parent fde9727f07
commit 459d8b75a0
3 changed files with 2 additions and 49 deletions
@@ -23,14 +23,12 @@ package com.threerings.micasa.lobby.table;
import com.threerings.crowd.data.PlaceObject;
import com.threerings.parlor.server.TableManager;
import com.threerings.parlor.server.TableManagerProvider;
import com.threerings.micasa.lobby.LobbyManager;
/**
* Extends lobby manager only to ensure that a table lobby object is used for table lobbies.
*/
public class TableLobbyManager
extends LobbyManager implements TableManagerProvider
public class TableLobbyManager extends LobbyManager
{
// documentation inherited
protected void didStartup ()
@@ -46,12 +44,6 @@ public class TableLobbyManager
return new TableLobbyObject();
}
// documentation inherited
public TableManager getTableManager ()
{
return _tmgr;
}
/** A reference to our table manager. */
protected TableManager _tmgr;
}