Remove @UnsupportedAppUsage from InputBindResult#CREATOR

We are mostly confident that this @UnsupportedAppUsage was a false
positive.

Fix: 194831602
Test: presubmit
Change-Id: Id836d48f19f6161030b1b77445777f8535bd78a3
This commit is contained in:
Yohei Yukawa
2021-07-27 15:03:44 -07:00
parent 45dc08a19d
commit c362e57266

View File

@@ -19,7 +19,6 @@ package com.android.internal.view;
import static java.lang.annotation.RetentionPolicy.SOURCE;
import android.annotation.IntDef;
import android.compat.annotation.UnsupportedAppUsage;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
@@ -251,7 +250,6 @@ public final class InputBindResult implements Parcelable {
/**
* Used to make this class parcelable.
*/
@UnsupportedAppUsage
public static final Parcelable.Creator<InputBindResult> CREATOR =
new Parcelable.Creator<InputBindResult>() {
@Override