From 8143ff376a417c7b851f18f9e606511a7d37130f Mon Sep 17 00:00:00 2001 From: sherman Date: Wed, 11 May 2011 08:54:16 -0700 Subject: [PATCH] 7043234: (fmt) java.util.Formatter links in javadoc to BigDecimal need to be fixed Summary: fixed the doc miss Reviewed-by: alanb, emcmanus --- jdk/src/share/classes/java/util/Formatter.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jdk/src/share/classes/java/util/Formatter.java b/jdk/src/share/classes/java/util/Formatter.java index 5ca126ab31..bcd36ea612 100644 --- a/jdk/src/share/classes/java/util/Formatter.java +++ b/jdk/src/share/classes/java/util/Formatter.java @@ -826,7 +826,7 @@ import sun.misc.FormattedFloatingDecimal; * *
  • Float and Double * - *
  • BigDecimal + *
  • BigDecimal * * * @@ -1362,7 +1362,7 @@ import sun.misc.FormattedFloatingDecimal; * precision is not provided, then all of the digits as returned by {@link * Double#toHexString(double)} will be output. * - *

    BigDecimal + *

    BigDecimal * *

    The following conversions may be applied {@link java.math.BigDecimal * BigDecimal}. @@ -1372,7 +1372,7 @@ import sun.misc.FormattedFloatingDecimal; * {@code 'e'} * '\u0065' * Requires the output to be formatted using computerized scientific notation. The computerized scientific notation. The localization algorithm is applied. * *

    The formatting of the magnitude m depends upon its value. @@ -1427,11 +1427,11 @@ import sun.misc.FormattedFloatingDecimal; * *

    If m is greater than or equal to 10-4 but less * than 10precision then it is represented in decimal format. + * href="#bdecimal">decimal format. * *

    If m is less than 10-4 or greater than or equal to * 10precision, then it is represented in computerized scientific notation. + * href="#bscientific">computerized scientific notation. * *

    The total number of significant digits in m is equal to the * precision. If the precision is not specified, then the default value is @@ -1447,7 +1447,7 @@ import sun.misc.FormattedFloatingDecimal; * * {@code 'f'} * '\u0066' - * Requires the output to be formatted using decimal + * Requires the output to be formatted using decimal * format. The localization algorithm is * applied. * -- GitLab