From dd47bbc5960f548e2d8532c3c17d042aa46125f8 Mon Sep 17 00:00:00 2001 From: Shane Carr Date: Tue, 28 Mar 2017 16:30:57 +0000 Subject: [PATCH] ICU-13060 Fixing tags in DecimalFormat.java X-SVN-Rev: 39950 --- .../main/classes/core/src/com/ibm/icu/text/DecimalFormat.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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

*