toString()stravaganza!

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@77 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-07-19 19:30:14 +00:00
parent 41488822dc
commit e912b18e27
18 changed files with 105 additions and 20 deletions
@@ -1,5 +1,5 @@
//
// $Id: BootstrapNotification.java,v 1.1 2001/07/19 07:09:16 mdb Exp $
// $Id: BootstrapNotification.java,v 1.2 2001/07/19 19:30:14 mdb Exp $
package com.threerings.cocktail.cher.net;
@@ -62,6 +62,11 @@ public class BootstrapNotification extends DownstreamMessage
_data = (BootstrapData)DObjectFactory.readFrom(in);
}
public String toString ()
{
return "[type=BOOT, msgid=" + messageId + ", data=" + _data + "]";
}
/** The data associated with this notification. */
protected BootstrapData _data;
}