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

Commit 56bddaab authored by Felipe Leme's avatar Felipe Leme
Browse files

Added @Nullable to ContentCaptureContext.getLocusId()

Test: m update-api
Fixes: 128922706

Change-Id: I541d0b33732069d6df85f6dbe12d1f599e4cb241
parent d6b17862
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53030,7 +53030,7 @@ package android.view.contentcapture {
    method public int describeContents();
    method @NonNull public static android.view.contentcapture.ContentCaptureContext forLocusId(@NonNull String);
    method @Nullable public android.os.Bundle getExtras();
    method @NonNull public android.content.LocusId getLocusId();
    method @Nullable public android.content.LocusId getLocusId();
    method public void writeToParcel(android.os.Parcel, int);
    field @NonNull public static final android.os.Parcelable.Creator<android.view.contentcapture.ContentCaptureContext> CREATOR;
  }
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ public final class ContentCaptureContext implements Parcelable {
    /**
     * Gets the context id.
     */
    @NonNull
    @Nullable
    public LocusId getLocusId() {
        return mId;
    }