From 9f967dd575e54b060ce5f0cf69f49f038b5d9888 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 16 Sep 2009 20:03:53 +0000 Subject: [PATCH] This is already output by SimpleStreamableObject... git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5958 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/crowd/data/PlaceConfig.as | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/as/com/threerings/crowd/data/PlaceConfig.as b/src/as/com/threerings/crowd/data/PlaceConfig.as index 057b33d98..edd1ac3c7 100644 --- a/src/as/com/threerings/crowd/data/PlaceConfig.as +++ b/src/as/com/threerings/crowd/data/PlaceConfig.as @@ -21,9 +21,6 @@ package com.threerings.crowd.data { -import com.threerings.util.ClassUtil; -import com.threerings.util.StringBuilder; - import com.threerings.io.ObjectInputStream; import com.threerings.io.ObjectOutputStream; import com.threerings.io.SimpleStreamableObject; @@ -83,13 +80,5 @@ public /*abstract*/ class PlaceConfig extends SimpleStreamableObject { return null; // not used } - - // documentation inherited - override protected function toStringBuilder (buf :StringBuilder) :void - { - buf.append("type=").append(ClassUtil.shortClassName(this)); - buf.append(", "); - super.toStringBuilder(buf); - } } }