8058413: Change formatDecimalInt so it is package private

Reviewed-by: darcy
This commit is contained in:
Lance Andersen 2014-09-13 13:26:18 -04:00
parent 2426fa797f
commit c8ca51ee3c

View File

@ -181,7 +181,7 @@ public class Date extends java.util.Date {
* @param offset Starting pos in buf
* @param len length of output value
*/
protected static void formatDecimalInt(int val, char[] buf, int offset, int len) {
static void formatDecimalInt(int val, char[] buf, int offset, int len) {
int charPos = offset + len;
do {
buf[--charPos] = (char)('0' + (val % 10));