Let's put those in a more sensible order.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@632 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-06-29 12:58:54 +00:00
parent 9b3b3c0e5a
commit 4e3f973f2d
@@ -73,11 +73,11 @@ public class TableManager
* Creates a table manager that will manage tables in the supplied distributed object (which * Creates a table manager that will manage tables in the supplied distributed object (which
* must implement {@link TableLobbyObject}. * must implement {@link TableLobbyObject}.
*/ */
public TableManager (InvocationManager invmgr, RootDObjectManager omgr, PlaceRegistry plreg, public TableManager (RootDObjectManager omgr, InvocationManager invmgr, PlaceRegistry plreg,
DObject tableObject) DObject tableObject)
{ {
_invmgr = invmgr;
_omgr = omgr; _omgr = omgr;
_invmgr = invmgr;
_plreg = plreg; _plreg = plreg;
// set up our object references // set up our object references
@@ -564,7 +564,7 @@ public class TableManager
/** A listener that removes users from tables when they're no longer able to play. */ /** A listener that removes users from tables when they're no longer able to play. */
protected ChangeListener _userListener = new UserListener(); protected ChangeListener _userListener = new UserListener();
protected PlaceRegistry _plreg;
protected InvocationManager _invmgr;
protected RootDObjectManager _omgr; protected RootDObjectManager _omgr;
protected InvocationManager _invmgr;
protected PlaceRegistry _plreg;
} }