More code cleaning for the Home intent filters

- remove the Intent.CATEGORY_HOME as it is not useful and
cannot be used into an Intent filter

Change-Id: I516188ea1c662c3277c64194c229a2e1c03a4e6a
This commit is contained in:
Fabrice Di Meglio
2014-07-23 19:32:57 -07:00
parent 7f5c5e8bb8
commit c9ad22c38b
2 changed files with 0 additions and 2 deletions

View File

@@ -74,7 +74,6 @@ public class DashboardSummary extends Fragment {
filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
filter.addCategory(Intent.CATEGORY_HOME);
filter.addDataScheme("package");
getActivity().registerReceiver(mHomePackageReceiver, filter);
}