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

Commit 9dfca201 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Print newly generated userId." into jb-mr1-dev

parents 810df895 e6d3ccc9
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) {