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

Commit 9ad36ded authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android Git Automerger
Browse files

am 9dfca201: Merge "Print newly generated userId." into jb-mr1-dev

* commit '9dfca201':
  Print newly generated userId.
parents 49db71e9 9dfca201
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -990,7 +990,10 @@ public final class Pm {
        }
        name = arg;
        try {
            if (mUm.createUser(name, 0) == null) {
            final UserInfo info = mUm.createUser(name, 0);
            if (info != null) {
                System.out.println("Success: created user id " + info.id);
            } else {
                System.err.println("Error: couldn't create User.");
            }
        } catch (RemoteException e) {