ICU-22789 Reformat indentation

This commit is contained in:
Elango Cheran 2025-03-28 16:27:26 -07:00
parent c3abc328d7
commit 1c59eafb4a

View file

@ -231,8 +231,8 @@ public interface Segments {
public int characteristics() {
return Spliterator.DISTINCT // BreakIterator always advances
| Spliterator.IMMUTABLE // design of Segmenter API is to provide an immutable view of
// segmentation by preventing the input string from mutating
// in the underlying BreakIterator
// segmentation by preventing the input string from mutating
// in the underlying BreakIterator
| Spliterator.NONNULL // primtive int is non-null
| Spliterator.ORDERED // BreakIterator always advances, and in a single direction
;