We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3abc32 commit 1c59eafCopy full SHA for 1c59eaf
icu4j/main/core/src/main/java/com/ibm/icu/text/segmenter/Segments.java
@@ -231,8 +231,8 @@ public long estimateSize() {
231
public int characteristics() {
232
return Spliterator.DISTINCT // BreakIterator always advances
233
| Spliterator.IMMUTABLE // design of Segmenter API is to provide an immutable view of
234
- // segmentation by preventing the input string from mutating
235
- // in the underlying BreakIterator
+ // segmentation by preventing the input string from mutating
+ // in the underlying BreakIterator
236
| Spliterator.NONNULL // primtive int is non-null
237
| Spliterator.ORDERED // BreakIterator always advances, and in a single direction
238
;
0 commit comments