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

Commit 3ba48297 authored by Alex Klyubin's avatar Alex Klyubin Committed by Gerrit Code Review
Browse files

Merge "[2/3] Remove unnecessary throws statement in ServiceManager"

parents 5987a26e fee616c3
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -1871,12 +1871,7 @@ public class DevelopmentSettings extends SettingsPreferenceFragment
    static class SystemPropPoker extends AsyncTask<Void, Void, Void> {
        @Override
        protected Void doInBackground(Void... params) {
            String[] services;
            try {
                services = ServiceManager.listServices();
            } catch (RemoteException e) {
                return null;
            }
            String[] services = ServiceManager.listServices();
            for (String service : services) {
                IBinder obj = ServiceManager.checkService(service);
                if (obj != null) {