From c0a8e204da0c08fab60fc9f7254fda866946652a Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 10 Sep 2008 20:35:00 +0000 Subject: [PATCH] Jamie points out that asdoc sucks the wet farts from dead pigeons, and so @param tags just match up to parameters based on order. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5364 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/StringUtil.as | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/as/com/threerings/util/StringUtil.as b/src/as/com/threerings/util/StringUtil.as index 1ccb82e7a..7c700daf0 100644 --- a/src/as/com/threerings/util/StringUtil.as +++ b/src/as/com/threerings/util/StringUtil.as @@ -348,6 +348,8 @@ public class StringUtil /** * Return a string containing all the public fields of the object * + * @param buf the StringBuilder to which to append + * @param obj the object to be inspected * @param fieldNames the names of fields to print, or null to print all. */ public static function fieldsToString ( @@ -369,6 +371,7 @@ public class StringUtil /** * Return a pretty basic toString of the supplied Object. * + * @param obj the object to be string'd * @param fieldNames the names of fields to print, or null to print all. */ public static function simpleToString (obj :Object, fieldNames :Array = null) :String