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

Commit e2a53cbe authored by Reema Bajwa's avatar Reema Bajwa Committed by Android (Google) Code Review
Browse files

Merge "Remove unused constructor from Entry class" into udc-dev

parents 2dbab100 3cb095ed
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1145,7 +1145,6 @@ package android.credentials.ui {

  public final class Entry implements android.os.Parcelable {
    ctor public Entry(@NonNull String, @NonNull String, @NonNull android.app.slice.Slice);
    ctor public Entry(@NonNull String, @NonNull String, @NonNull android.app.slice.Slice, @NonNull android.app.PendingIntent, @NonNull android.content.Intent);
    ctor public Entry(@NonNull String, @NonNull String, @NonNull android.app.slice.Slice, @NonNull android.content.Intent);
    method public int describeContents();
    method @Nullable public android.content.Intent getFrameworkExtrasIntent();
+0 −11
Original line number Diff line number Diff line
@@ -67,17 +67,6 @@ public final class Entry implements Parcelable {
        mSlice = slice;
    }

    /** Constructor to be used for an entry that requires a pending intent to be invoked
     * when clicked.
     */
    // TODO: Remove this constructor as it is no longer used
    public Entry(@NonNull String key, @NonNull String subkey, @NonNull Slice slice,
            @NonNull PendingIntent pendingIntent, @NonNull Intent intent) {
        this(key, subkey, slice);
        mPendingIntent = pendingIntent;
        mFrameworkExtrasIntent = intent;
    }

    /** Constructor to be used for an entry that requires a pending intent to be invoked
     * when clicked.
     */