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

Commit e6d3ccc9 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Print newly generated userId.

Bug: 7334718
Change-Id: Id4dc456b079bebbe9f2d7ea2a8343d2215f296dc
parent 38f8688b
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) {