Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1daf827 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

Merge "Fix paragraph iterator." into jb-dev

parents 58a69d24 9768832d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -287,12 +287,12 @@ public final class AccessibilityIterators {
                    }
                }
            }
            while (start < textLength && mText.charAt(start) == '\n') {
                start++;
            }
            if (start < 0) {
                return null;
            }
            while (start < textLength && mText.charAt(start) == '\n') {
                start++;
            }
            int end = start;
            for (int i = end + 1; i < textLength; i++) {
                end = i;