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

Commit d06da23f authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Tiny improvement on UserInfo.getUserHandle()

Test: boot / manual code inspection
Bug: 142134660
Change-Id: I49e25d4d2ac339365c08288b53a67ffba39e2405
parent b71657a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -350,7 +350,7 @@ public class UserInfo implements Parcelable {

    @UnsupportedAppUsage
    public UserHandle getUserHandle() {
        return new UserHandle(id);
        return UserHandle.of(id);
    }

    @Override