OpenJDK / jdk / jdk
changeset 21368:7b48f137e525
5063500: Formatter spec says "char" is not an integral type
7126305: Wrong Unicode value specified for format conversion character 'd'
8027287: incorrect example in Formatter javadoc
Reviewed-by: rriggs, darcy, lancea
author | smarks |
---|---|
date | Fri, 25 Oct 2013 14:53:34 -0700 |
parents | 679b312e3c5b |
children | 45d88a0a11d5 |
files | jdk/src/share/classes/java/util/Formatter.java |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/share/classes/java/util/Formatter.java Fri Oct 25 13:01:11 2013 +0200 +++ b/jdk/src/share/classes/java/util/Formatter.java Fri Oct 25 14:53:34 2013 -0700 @@ -131,7 +131,7 @@ * import static java.util.Calendar.*; * * Calendar c = new GregorianCalendar(1995, MAY, 23); - * String s = String.format("Duke's Birthday: %1$tm %1$te,%1$tY", c); + * String s = String.format("Duke's Birthday: %1$tb %1$te, %1$tY", c); * // -> s == "Duke's Birthday: May 23, 1995" * </pre></blockquote> * @@ -253,7 +253,7 @@ * <li> <b>Integral</b> - may be applied to Java integral types: {@code byte}, * {@link Byte}, {@code short}, {@link Short}, {@code int} and {@link * Integer}, {@code long}, {@link Long}, and {@link java.math.BigInteger - * BigInteger} + * BigInteger} (but not {@code char} or {@link Character}) * * <li><b>Floating Point</b> - may be applied to Java floating-point types: * {@code float}, {@link Float}, {@code double}, {@link Double}, and {@link @@ -899,7 +899,7 @@ * <table cellpadding=5 summary="IntConv"> * * <tr><td valign="top"> {@code 'd'} - * <td valign="top"> <tt>'\u0054'</tt> + * <td valign="top"> <tt>'\u0064'</tt> * <td> Formats the argument as a decimal integer. The <a * href="#L10nAlgorithm">localization algorithm</a> is applied. * @@ -1057,7 +1057,7 @@ * <table cellpadding=5 summary="BIntConv"> * * <tr><td valign="top"> {@code 'd'} - * <td valign="top"> <tt>'\u0054'</tt> + * <td valign="top"> <tt>'\u0064'</tt> * <td> Requires the output to be formatted as a decimal integer. The <a * href="#L10nAlgorithm">localization algorithm</a> is applied. *