]> granicus.if.org Git - icu/commitdiff
ICU-9842 Change NBSP to ASCII spaces in AlphabeticIndex.java
authorAndy Heninger <andy.heninger@gmail.com>
Wed, 20 Feb 2013 22:33:55 +0000 (22:33 +0000)
committerAndy Heninger <andy.heninger@gmail.com>
Wed, 20 Feb 2013 22:33:55 +0000 (22:33 +0000)
X-SVN-Rev: 33282

icu4j/main/classes/collate/src/com/ibm/icu/text/AlphabeticIndex.java

index 5423bdf23a3132b71bbe55ee0542da5096e79658..50b6bd6eb0e8cf6ec4008fa3168083b15526839d 100644 (file)
@@ -251,19 +251,19 @@ public final class AlphabeticIndex<V> implements Iterable<Bucket<V>> {
     }
 
     /** 
-     * Create an AlphabeticIndex that uses a specific collator.
-     
-     * <p>The index will be created with no labels; the addLabels() function must be called
-     * after creation to add the desired labels to the index.
-     
-     * <p>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.
+     
+     * <p>The index will be created with no labels; the addLabels() function must be called
+     * after creation to add the desired labels to the index.
+     
+     * <p>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);
     }