Minor cleanups; added PlaceManager to MessageHandler callback.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@773 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-12-14 00:11:18 +00:00
parent 2c1e5c1ba5
commit 6e962013a9
5 changed files with 24 additions and 16 deletions
@@ -1,5 +1,5 @@
//
// $Id: OccupantInfo.java,v 1.3 2001/10/11 04:07:51 mdb Exp $
// $Id: OccupantInfo.java,v 1.4 2001/12/14 00:11:17 mdb Exp $
package com.threerings.crowd.data;
@@ -64,11 +64,9 @@ public class OccupantInfo implements DSet.Element
*/
public String toString ()
{
StringBuffer buf = new StringBuffer();
buf.append("[");
StringBuffer buf = new StringBuffer("[");
toString(buf);
buf.append("]");
return buf.toString();
return buf.append("]").toString();
}
/**