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

Commit 3a79bad4 authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "Intent.getAction() can return null"

parents 24e07307 762eaa77
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -563,11 +563,11 @@ public class ManageApplications extends Fragment implements
        if (className.equals(RunningServicesActivity.class.getName())) {
            defaultTabTag = TAB_RUNNING;
        } else if (className.equals(StorageUseActivity.class.getName())
                || action.equals(Intent.ACTION_MANAGE_PACKAGE_STORAGE)) {
                || Intent.ACTION_MANAGE_PACKAGE_STORAGE.equals(action)) {
            mSortOrder = SORT_ORDER_SIZE;
            mFilterApps = FILTER_APPS_ALL;
            defaultTabTag = TAB_ALL;
        } else if (action.equals(Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS)) {
        } else if (Settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS.equals(action)) {
            // Select the all-apps tab, with the default sorting
            defaultTabTag = TAB_ALL;
        }