Merge "Corrected return value for updatePreferenceToSpecificActivityOrRemove method"
diff --git a/src/com/android/settings/Utils.java b/src/com/android/settings/Utils.java
index f28500e..582891d 100644
--- a/src/com/android/settings/Utils.java
+++ b/src/com/android/settings/Utils.java
@@ -124,7 +124,7 @@
         // Did not find a matching activity, so remove the preference
         parentPreferenceGroup.removePreference(preference);
 
-        return true;
+        return false;
     }
 
     /**