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

Commit e6fe5161 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "AutoOn: Remove unreachable return" into main

parents dec5c4e2 bc8345dc
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;
    }
    }


    /**
    /**