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

Commit 4267dbea authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Use a bit more descriptive name for a parameter"

parents 1397751c bb9f6242
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -257,11 +257,12 @@ public final class CursorAnchorInfo implements Parcelable {
        /**
         * Sets the text range of the composing text. Calling this can be skipped if there is
         * no composing text.
         * @param index index where the composing text starts.
         * @param composingTextStart index where the composing text starts.
         * @param composingText the entire composing text.
         */
        public Builder setComposingText(final int index, final CharSequence composingText) {
            mComposingTextStart = index;
        public Builder setComposingText(final int composingTextStart,
            final CharSequence composingText) {
            mComposingTextStart = composingTextStart;
            if (composingText == null) {
                mComposingText = null;
            } else {