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

Commit 5af00f9e authored by Michael Groover's avatar Michael Groover Committed by Android (Google) Code Review
Browse files

Merge "Fix typo for userFilter when registering for ACTION_USER_REMOVED"

parents e6612e39 c91f86ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ public abstract class RegisteredServicesCache<V> {

        // Register for user-related events
        IntentFilter userFilter = new IntentFilter();
        sdFilter.addAction(Intent.ACTION_USER_REMOVED);
        userFilter.addAction(Intent.ACTION_USER_REMOVED);
        mContext.registerReceiver(mUserRemovedReceiver, userFilter, null, handler);
    }