OSDN Git Service

Changed javadoc to reflect the change in StringBuilder long and int append
authortreymiller <treyy333@gmail.com>
Thu, 31 Jan 2013 18:07:19 +0000 (10:07 -0800)
committertreymiller <treyy333@gmail.com>
Thu, 31 Jan 2013 18:07:19 +0000 (10:07 -0800)
sorry it took so long, im the height of half-assery

gdx/src/com/badlogic/gdx/utils/StringBuilder.java

index 6e120df..f5c0ca7 100644 (file)
@@ -736,11 +736,10 @@ public class StringBuilder implements Appendable, CharSequence {
        }\r
 \r
        /** Appends the string representation of the specified {@code long} value. The {@code long} value is converted to a string\r
-        * according to the rule defined by {@link String#valueOf(long)}.\r
+        * without memory allocation.\r
         * \r
         * @param lng the {@code long} value.\r
-        * @return this builder.\r
-        * @see String#valueOf(long) */\r
+        * @return this builder. */\r
        public StringBuilder append (long lng) {\r
                if (lng == Long.MIN_VALUE) {\r
                        append0("-9223372036854775808");\r
@@ -775,11 +774,10 @@ public class StringBuilder implements Appendable, CharSequence {
        }\r
 \r
        /** Appends the string representation of the specified {@code float} value. The {@code float} value is converted to a string\r
-        * according to the rule defined by {@link String#valueOf(float)}.\r
+        * without memory allocation.\r
         * \r
         * @param f the {@code float} value to append.\r
-        * @return this builder.\r
-        * @see String#valueOf(float) */\r
+        * @return this builder. */\r
        public StringBuilder append (float f) {\r
                append0(Float.toString(f));\r
                return this;\r