diff options
| author | 2024-05-17 16:44:43 +0000 | |
|---|---|---|
| committer | 2024-05-17 16:44:43 +0000 | |
| commit | 4516efd7629e4ff5be547fd549aa0d2ecc1411dd (patch) | |
| tree | 144e356cb1139096c54c1a607825a5b45daaf05c | |
| parent | e0693f8cd9bdd72dafd8452ed560708c74fcb9dd (diff) | |
Suppress lint warning as function matches others in the class.
Bug: 341038645
Change-Id: I2c4f5f65a047dadf07a6faf472bca3e88b75eb7e
Test: N/A
| -rw-r--r-- | core/java/android/app/Activity.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index e1cb630f4d82..48de604a5953 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -9634,6 +9634,7 @@ public class Activity extends ContextThemeWrapper * the default behaviour */ @FlaggedApi(android.security.Flags.FLAG_ASM_RESTRICTIONS_ENABLED) + @SuppressLint("OnNameExpected") public void setAllowCrossUidActivitySwitchFromBelow(boolean allowed) { ActivityClient.getInstance().setAllowCrossUidActivitySwitchFromBelow(mToken, allowed); } |