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); - } } }