Make where() available to the delegates.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2608 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-05-26 21:24:56 +00:00
parent 8d9b9f69d2
commit 6aba06219d
@@ -1,5 +1,5 @@
//
// $Id: PlaceManagerDelegate.java,v 1.2 2002/10/26 02:40:30 shaper Exp $
// $Id: PlaceManagerDelegate.java,v 1.3 2003/05/26 21:24:56 mdb Exp $
package com.threerings.crowd.server;
@@ -79,6 +79,14 @@ public class PlaceManagerDelegate
{
}
/**
* Invokes {PlaceManager#where}.
*/
public String where ()
{
return _plmgr.where();
}
/** A reference to the manager for which we are delegating. */
protected PlaceManager _plmgr;
}