diff options
| author | 2021-10-14 06:59:51 +0000 | |
|---|---|---|
| committer | 2021-10-14 06:59:51 +0000 | |
| commit | 2f8032fd8b3dfaa7d4bc7f3cbaedf8ab06d2fd1a (patch) | |
| tree | 57504872b2172ab6304fd371b190ff721029ffe2 | |
| parent | 5563f3ad03e39de227d0271e0e99e6aa32e4b2b0 (diff) | |
| parent | 27064f0bcf3c3627f83fe407454cf18866c3a75c (diff) | |
Merge "bluetooth: Fix common typo"
| -rw-r--r-- | core/java/android/bluetooth/BluetoothAdapter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/bluetooth/BluetoothAdapter.java b/core/java/android/bluetooth/BluetoothAdapter.java index 3b744a73e75e..06ce0530d475 100644 --- a/core/java/android/bluetooth/BluetoothAdapter.java +++ b/core/java/android/bluetooth/BluetoothAdapter.java @@ -2099,7 +2099,7 @@ public final class BluetoothAdapter { try { return mManagerService.isBleScanAlwaysAvailable(); } catch (RemoteException e) { - Log.e(TAG, "remote expection when calling isBleScanAlwaysAvailable", e); + Log.e(TAG, "remote exception when calling isBleScanAlwaysAvailable", e); return false; } } @@ -2307,7 +2307,7 @@ public final class BluetoothAdapter { try { return mManagerService.isHearingAidProfileSupported(); } catch (RemoteException e) { - Log.e(TAG, "remote expection when calling isHearingAidProfileSupported", e); + Log.e(TAG, "remote exception when calling isHearingAidProfileSupported", e); return false; } } |