OSDN Git Service

Fixed javadocs for StringBuilder. Was showing the float append as without memory...
authorJustin Shapcott <support@mobidevelop.com>
Thu, 31 Jan 2013 21:01:21 +0000 (14:01 -0700)
committerJustin Shapcott <support@mobidevelop.com>
Thu, 31 Jan 2013 21:01:21 +0000 (14:01 -0700)
gdx/src/com/badlogic/gdx/utils/StringBuilder.java

index f5c0ca7..7980019 100644 (file)
@@ -706,7 +706,7 @@ public class StringBuilder implements Appendable, CharSequence {
        }\r
 \r
        /** Appends the string representation of the specified {@code int} value. The {@code int} value is converted to a string\r
-        * according to the rule defined by {@link String#valueOf(int)}.\r
+        * without memory allocation.\r
         * \r
         * @param i the {@code int} value to append.\r
         * @return this builder.\r
@@ -774,7 +774,7 @@ 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
-        * without memory allocation.\r
+        * according to the rule defined by {@link String#valueOf(float)}.\r
         * \r
         * @param f the {@code float} value to append.\r
         * @return this builder. */\r