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

Commit 456b5e03 authored by Sudheer Shanka's avatar Sudheer Shanka Committed by Android (Google) Code Review
Browse files

Merge "Ignore null actions in BlobStoreManagerService receivers." into main

parents 2acae06f da321ee3
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -1404,7 +1404,11 @@ public class BlobStoreManagerService extends SystemService {
            if (LOGV) {
                Slog.v(TAG, "Received " + intent);
            }
            switch (intent.getAction()) {
            final String action = intent.getAction();
            if (action == null) {
                return;
            }
            switch (action) {
                case Intent.ACTION_PACKAGE_FULLY_REMOVED:
                case Intent.ACTION_PACKAGE_DATA_CLEARED:
                    final String packageName = intent.getData().getSchemeSpecificPart();
@@ -1431,7 +1435,11 @@ public class BlobStoreManagerService extends SystemService {
            if (LOGV) {
                Slog.v(TAG, "Received: " + intent);
            }
            switch (intent.getAction()) {
            final String action = intent.getAction();
            if (action == null) {
                return;
            }
            switch (action) {
                case Intent.ACTION_USER_REMOVED:
                    final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
                            USER_NULL);