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

Commit 8f74aa34 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "ContentCaptureEvent: Log composing and selection indices" into sc-dev

parents 5c7cdbb8 d224da0e
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -525,10 +525,13 @@ public final class ContentCaptureEvent implements Parcelable {
            string.append(", insets=").append(mInsets);
        }
        if (mComposingStart > MAX_INVALID_VALUE) {
            string.append(", hasComposing");
            string.append(", composing=[")
                    .append(mComposingStart).append(",").append(mComposingEnd).append("]");
        }
        if (mSelectionStartIndex > MAX_INVALID_VALUE) {
            string.append(", hasSelection");
            string.append(", selection=[")
                    .append(mSelectionStartIndex).append(",")
                    .append(mSelectionEndIndex).append("]");
        }
        return string.append(']').toString();
    }