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

Commit e766eae9 authored by Nick Pelly's avatar Nick Pelly
Browse files

Fix broken build.

Should be bool not int. Forgot to roll in local changes to last commit.

Change-Id: I28bad88238e5b715a5033b0d5a897d924ef8b538
parent f9bbe1e7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ public final class BluetoothA2dp {
     *  @return false on immediate error, true otherwise
     *  @hide
     */
    public int suspendSink(BluetoothDevice device) {
    public boolean suspendSink(BluetoothDevice device) {
        try {
            return mService.suspendSink(device);
        } catch (RemoteException e) {
@@ -156,7 +156,7 @@ public final class BluetoothA2dp {
     *  @return false on immediate error, true otherwise
     *  @hide
     */
    public int resumeSink(BluetoothDevice device) {
    public boolean resumeSink(BluetoothDevice device) {
        try {
            return mService.resumeSink(device);
        } catch (RemoteException e) {