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

Commit 1d31d5ba authored by Amith Yamasani's avatar Amith Yamasani Committed by Android (Google) Code Review
Browse files

Merge "Start userId from 10, reserving 1-9 for special use in the future." into jb-mr1-dev

parents 7134ef60 07a0ede7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -701,7 +701,7 @@ public class UserManagerService extends IUserManager.Stub {
     */
    private int getNextAvailableIdLocked() {
        synchronized (mPackagesLock) {
            int i = 0;
            int i = 10;
            while (i < Integer.MAX_VALUE) {
                if (mUsers.indexOfKey(i) < 0) {
                    break;