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

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/21530993

Change-Id: Ifb76e6bdd4e3f243642506b883801c1f0ec180ab
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Reema Bajwa
2023-03-08 05:52:21 +00:00
committed by Automerger Merge Worker
2 changed files with 0 additions and 12 deletions

View File

@@ -1145,7 +1145,6 @@ package android.credentials.ui {
public final class Entry implements android.os.Parcelable { 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);
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); ctor public Entry(@NonNull String, @NonNull String, @NonNull android.app.slice.Slice, @NonNull android.content.Intent);
method public int describeContents(); method public int describeContents();
method @Nullable public android.content.Intent getFrameworkExtrasIntent(); method @Nullable public android.content.Intent getFrameworkExtrasIntent();

View File

@@ -67,17 +67,6 @@ public final class Entry implements Parcelable {
mSlice = slice; 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 /** Constructor to be used for an entry that requires a pending intent to be invoked
* when clicked. * when clicked.
*/ */