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

Commit b9424906 authored by Yorke Lee's avatar Yorke Lee
Browse files

Use UserManager.isSystemUser API

Bug: 20348316
Change-Id: I066e6b93c63e09850ef2234dd5c724e44594aaf8
parent ff1769fb
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
@@ -105,19 +105,10 @@ public class DialerSettingsActivity extends PreferenceActivity {
    }

    /**
     * Whether a user handle associated with the current user is that of the primary owner. That is,
     * whether there is a user handle which has an id which matches the owner's handle.
     * @return Whether the current user is the primary user.
     */
    private boolean isPrimaryUser() {
        UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
        List<UserHandle> userHandles = userManager.getUserProfiles();
        for (int i = 0; i < userHandles.size(); i++){
            if (userHandles.get(i).myUserId() == OWNER_HANDLE_ID) {
                return true;
            }
        }

        return false;
        final UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
        return userManager.isSystemUser();
    }
}