8058394: Doclint clean up in java.sql.Date
authorlancea
Fri, 12 Sep 2014 18:37:58 -0400
changeset 26616 7330ab4d8b8e
parent 26615 faabac3002f1
child 26617 ca6dcc52ff1c
8058394: Doclint clean up in java.sql.Date Reviewed-by: darcy
jdk/src/java.sql/share/classes/java/sql/Date.java
--- 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;