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

Commit 25e3969c authored by Tony Mak's avatar Tony Mak Committed by android-build-merger
Browse files

Merge "TextSelection.Builder.setId should take null as well" into pi-dev am: 10f8ed0c

am: ed8e0f6f

Change-Id: Ie518095729244f18e9c5cebb2616b98be1b33ce1
parents c8b76449 ed8e0f6f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -154,8 +154,8 @@ public final class TextSelection implements Parcelable {
         * Sets an id for the TextSelection object.
         */
        @NonNull
        public Builder setId(@NonNull String id) {
            mId = Preconditions.checkNotNull(id);
        public Builder setId(@Nullable String id) {
            mId = id;
            return this;
        }