Needed a comma in toString().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@386 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-03 03:43:37 +00:00
parent 1303278ce7
commit 4450d47d16
@@ -1,5 +1,5 @@
// //
// $Id: GameConfig.java,v 1.3 2001/10/01 22:17:34 mdb Exp $ // $Id: GameConfig.java,v 1.4 2001/10/03 03:43:37 mdb Exp $
package com.threerings.parlor.data; package com.threerings.parlor.data;
@@ -93,6 +93,6 @@ public abstract class GameConfig implements Streamable
protected void toString (StringBuffer buf) protected void toString (StringBuffer buf)
{ {
buf.append("type=").append(getClass().getName()); buf.append("type=").append(getClass().getName());
buf.append("rated=").append(rated); buf.append(", rated=").append(rated);
} }
} }