diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java index b6b991c68fa..fbe9915b548 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java @@ -175,7 +175,7 @@ import com.ibm.icu.util.ULocale.Category; * *

Parsing

* - * DecimalFormat aims to be able to parse anything that it can output as a formatted string. + *

DecimalFormat aims to be able to parse anything that it can output as a formatted string. * *

There are two primary parse modes: lenient and strict. Lenient mode should * be used if the goal is to parse user input to a number; strict mode should be used if the goal is @@ -197,7 +197,6 @@ import com.ibm.icu.util.ULocale.Category; *

If {@link #parse(String, ParsePosition)} fails to parse a string, it returns null * and leaves the parse position unchanged. The convenience method {@link #parse(String)} indicates * parse failure by throwing a {@link java.text.ParseException}. - * * *

Thread Safety and Best Practices

*