Make where() publicly accessible.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2242 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-02-05 00:23:52 +00:00
parent 6b7f189fc6
commit fc1a45dbaa
2 changed files with 4 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: PlaceManager.java,v 1.41 2002/11/01 21:32:23 shaper Exp $
// $Id: PlaceManager.java,v 1.42 2003/02/05 00:23:33 mdb Exp $
package com.threerings.crowd.server;
@@ -336,7 +336,7 @@ public class PlaceManager
* managers can override this and augment the default value (which is
* simply the place object id) with useful identifying information.
*/
protected String where ()
public String where ()
{
return String.valueOf(_plobj.getOid());
}
@@ -1,5 +1,5 @@
//
// $Id: SceneManager.java,v 1.10 2002/06/20 22:12:23 mdb Exp $
// $Id: SceneManager.java,v 1.11 2003/02/05 00:23:52 mdb Exp $
package com.threerings.whirled.server;
@@ -86,7 +86,7 @@ public class SceneManager extends PlaceManager
}
// documentation inherited
protected String where ()
public String where ()
{
return _scene.getName() + " (" + super.where() + ")";
}