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

Commit bc8345dc authored by David Duarte's avatar David Duarte
Browse files

AutoOn: Remove unreachable return

Bug: 316946334
Bug: 323060869
Test: m com.android.btservices
Change-Id: I1ce1e0443a9e39de1dbdc301f4eee0463c2902a0
parent 93732559
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -5810,9 +5810,8 @@ public final class BluetoothAdapter {
        try {
        try {
            return mManagerService.isAutoOnSupported();
            return mManagerService.isAutoOnSupported();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            e.rethrowFromSystemServer();
            throw e.rethrowFromSystemServer();
        }
        }
        return false;
    }
    }


    /**
    /**
@@ -5829,9 +5828,8 @@ public final class BluetoothAdapter {
        try {
        try {
            return mManagerService.isAutoOnEnabled();
            return mManagerService.isAutoOnEnabled();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            e.rethrowFromSystemServer();
            throw e.rethrowFromSystemServer();
        }
        }
        return false;
    }
    }


    /**
    /**