jdk/src/java.sql/share/classes/java/sql/Date.java
changeset 26616 7330ab4d8b8e
parent 26597 c840e6631327
child 26619 28b1c3535fe7
--- a/jdk/src/java.sql/share/classes/java/sql/Date.java	Fri Aug 29 12:07:11 2014 -0700
+++ b/jdk/src/java.sql/share/classes/java/sql/Date.java	Fri Sep 12 18:37:58 2014 -0400
@@ -169,13 +169,17 @@
         return jla.newStringUnsafe(buf);
     }
 
-    /*
+    /**
      * Formats an unsigned integer into a char array in decimal output format.
      * Numbers will be zero-padded or truncated if the string representation
      * of the integer is smaller than or exceeds len, respectively.
      *
      * Should consider moving this to Integer and expose it through
      * JavaLangAccess similar to Integer::formatUnsignedInt
+     * @param val  Value to convert
+     * @param buf  Array containing converted value
+     * @param offset Starting pos in buf
+     * @param len  length of output value
      */
     protected static void formatDecimalInt(int val, char[] buf, int offset, int len) {
         int charPos = offset + len;