From 186db36241925bfdeed456eb171b0e8c90d00d31 Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Wed, 20 Feb 2013 22:33:55 +0000 Subject: [PATCH] ICU-9842 Change NBSP to ASCII spaces in AlphabeticIndex.java X-SVN-Rev: 33282 --- .../src/com/ibm/icu/text/AlphabeticIndex.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/icu4j/main/classes/collate/src/com/ibm/icu/text/AlphabeticIndex.java b/icu4j/main/classes/collate/src/com/ibm/icu/text/AlphabeticIndex.java index 5423bdf23a3..50b6bd6eb0e 100644 --- a/icu4j/main/classes/collate/src/com/ibm/icu/text/AlphabeticIndex.java +++ b/icu4j/main/classes/collate/src/com/ibm/icu/text/AlphabeticIndex.java @@ -251,19 +251,19 @@ public final class AlphabeticIndex implements Iterable> { } /** -  * Create an AlphabeticIndex that uses a specific collator. -  * -  *

The index will be created with no labels; the addLabels() function must be called -  * after creation to add the desired labels to the index. -  * -  *

The index will work directly with the supplied collator. If the caller will need to -  * continue working with the collator it should be cloned first, so that the -  * collator provided to the AlphabeticIndex remains unchanged after creation of the index. -   * -   * @param collator The collator to use to order the contents of this index. -     * @draft ICU 51 + * Create an AlphabeticIndex that uses a specific collator. + * + *

The index will be created with no labels; the addLabels() function must be called + * after creation to add the desired labels to the index. + * + *

The index will work directly with the supplied collator. If the caller will need to + * continue working with the collator it should be cloned first, so that the + * collator provided to the AlphabeticIndex remains unchanged after creation of the index. + * + * @param collator The collator to use to order the contents of this index. + * @draft ICU 51 * @provisional This API might change or be removed in a future release. -    */ + */ public AlphabeticIndex(RuleBasedCollator collator) { this(null, collator); } -- 2.40.0