diff options
| author | 2022-03-08 18:53:18 +0000 | |
|---|---|---|
| committer | 2022-03-08 18:53:18 +0000 | |
| commit | 4f643669840a9487bf3fd2fae32ce73644b8629e (patch) | |
| tree | 7a8b94cd38dda724299d49bdd3848118fc91c67f | |
| parent | 7528c23011a4620dd14fc7c95b588e43df98bfe6 (diff) | |
| parent | dff79a4bf5d6d274238f7f6ea852808a99da057a (diff) | |
Merge "Update @RequiresApi declarations for T to be 33." am: 5c72552e39 am: dff79a4bf5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2015637
Change-Id: Ia15ef2e2121f5a8b2ab16f5f36af5d25812d83e9
| -rw-r--r-- | packages/SettingsLib/src/com/android/settingslib/bluetooth/CsipSetCoordinatorProfile.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SettingsLib/src/com/android/settingslib/bluetooth/CsipSetCoordinatorProfile.java b/packages/SettingsLib/src/com/android/settingslib/bluetooth/CsipSetCoordinatorProfile.java index 6da249c2980e..c3f845ca8c0a 100644 --- a/packages/SettingsLib/src/com/android/settingslib/bluetooth/CsipSetCoordinatorProfile.java +++ b/packages/SettingsLib/src/com/android/settingslib/bluetooth/CsipSetCoordinatorProfile.java @@ -59,7 +59,7 @@ public class CsipSetCoordinatorProfile implements LocalBluetoothProfile { // These callbacks run on the main thread. private final class CoordinatedSetServiceListener implements BluetoothProfile.ServiceListener { - @RequiresApi(32) + @RequiresApi(33) public void onServiceConnected(int profile, BluetoothProfile proxy) { if (VDBG) { Log.d(TAG, "Bluetooth service connected"); @@ -233,7 +233,7 @@ public class CsipSetCoordinatorProfile implements LocalBluetoothProfile { return NAME; } - @RequiresApi(32) + @RequiresApi(33) protected void finalize() { if (VDBG) { Log.d(TAG, "finalize()"); |