From c362e57266f6eddcc9567b0e52b714f89b3bc2e1 Mon Sep 17 00:00:00 2001 From: Yohei Yukawa Date: Tue, 27 Jul 2021 15:03:44 -0700 Subject: [PATCH] Remove @UnsupportedAppUsage from InputBindResult#CREATOR We are mostly confident that this @UnsupportedAppUsage was a false positive. Fix: 194831602 Test: presubmit Change-Id: Id836d48f19f6161030b1b77445777f8535bd78a3 --- core/java/com/android/internal/view/InputBindResult.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/java/com/android/internal/view/InputBindResult.java b/core/java/com/android/internal/view/InputBindResult.java index 24ded75a611ca..94c434768db43 100644 --- a/core/java/com/android/internal/view/InputBindResult.java +++ b/core/java/com/android/internal/view/InputBindResult.java @@ -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 CREATOR = new Parcelable.Creator() { @Override