Merge "Small corrections to the code that generates the print summary in the settings."
diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java
index d1a030b..a332632 100644
--- a/src/com/android/settings/DevelopmentSettings.java
+++ b/src/com/android/settings/DevelopmentSettings.java
@@ -1969,12 +1969,7 @@
     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) {