Nix place-specific willEnter and didLeave pattern since we're no longer bound

to places.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@257 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-03-21 21:51:11 +00:00
parent 9b5369ef99
commit fde9727f07
3 changed files with 32 additions and 32 deletions
@@ -149,7 +149,7 @@ public class TableListView extends JPanel
public void willEnterPlace (PlaceObject place)
{
// pass the good word on to our table director
_tdtr.willEnterPlace(place);
_tdtr.setTableObject(place);
// iterate over the tables already active in this lobby and put
// them in their respective lists
@@ -164,7 +164,7 @@ public class TableListView extends JPanel
public void didLeavePlace (PlaceObject place)
{
// pass the good word on to our table director
_tdtr.didLeavePlace(place);
_tdtr.clearTableObject();
// clear out our table lists
_matchList.removeAll();