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

Commit ab5400bb authored by Jorge Ruesga's avatar Jorge Ruesga Committed by Gerrit Code Review
Browse files

Merge "base: remove extra checks" into cm-11.0

parents 831179d5 aef4a12b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2025,8 +2025,7 @@ public class PackageManagerService extends IPackageManager.Stub {
            if((ps == null) || (ps.pkg == null) || (ps.pkg.applicationInfo == null)) {
                return -1;
            }
            p = ps.pkg;
            return p != null ? UserHandle.getUid(userId, p.applicationInfo.uid) : -1;
            return UserHandle.getUid(userId, ps.pkg.applicationInfo.uid);
        }
    }