OpenJDK / portola / portola
changeset 7543:3a3e3f73b043
5076980: (fmt) FormattableFlags specifies unsupported '^' format flag
Summary: replaced '^' with 'S' in spec
Reviewed-by: darcy
author | sherman |
---|---|
date | Wed, 08 Dec 2010 20:11:31 -0800 |
parents | 514d58003c20 |
children | 85a0e84bb9a0 |
files | jdk/src/share/classes/java/util/FormattableFlags.java |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/share/classes/java/util/FormattableFlags.java Wed Dec 08 12:54:43 2010 -0800 +++ b/jdk/src/share/classes/java/util/FormattableFlags.java Wed Dec 08 20:11:31 2010 -0800 @@ -59,10 +59,10 @@ * <pre> * out.toUpperCase() </pre> * - * <p> This flag corresponds to <tt>'^'</tt> (<tt>'\u005e'</tt>) in + * <p> This flag corresponds to <tt>'S'</tt> (<tt>'\u0053'</tt>) in * the format specifier. */ - public static final int UPPERCASE = 1<<1; // '^' + public static final int UPPERCASE = 1<<1; // 'S' /** * Requires the output to use an alternate form. The definition of the