Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc11d564 authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by Automerger Merge Worker
Browse files

Merge "bluetooth: Fix common typo" am: 29429ea1 am: b0182963ab am: 8047a7ff am: 464d86b5

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

Change-Id: I3c1aab5c74cc8ca90414be56d4c86daf8305d5d3
parents f2520ca8 464d86b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -2099,7 +2099,7 @@ public final class BluetoothAdapter {
        try {
        try {
            return mManagerService.isBleScanAlwaysAvailable();
            return mManagerService.isBleScanAlwaysAvailable();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.e(TAG, "remote expection when calling isBleScanAlwaysAvailable", e);
            Log.e(TAG, "remote exception when calling isBleScanAlwaysAvailable", e);
            return false;
            return false;
        }
        }
    }
    }
@@ -2307,7 +2307,7 @@ public final class BluetoothAdapter {
        try {
        try {
            return mManagerService.isHearingAidProfileSupported();
            return mManagerService.isHearingAidProfileSupported();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.e(TAG, "remote expection when calling isHearingAidProfileSupported", e);
            Log.e(TAG, "remote exception when calling isHearingAidProfileSupported", e);
            return false;
            return false;
        }
        }
    }
    }