Merge "bluetooth: Fix common typo" am: 2f8032fd8b am: b0182963ab

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1856317

Change-Id: I73e4f7e156ee701c3587ef9667d6c7c03dbe8363
This commit is contained in:
Jakub Pawlowski
2021-10-14 07:22:16 +00:00
committed by Automerger Merge Worker

View File

@@ -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;
}
}