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

Commit 4152732b authored by Przemyslaw Szczepaniak's avatar Przemyslaw Szczepaniak Committed by Android (Google) Code Review
Browse files

Merge "Remove PRODUCT_SERVICES from PackageManagerNative.getLocation."

parents 4aa94ca3 e1f8449b
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -23586,9 +23586,7 @@ public class PackageManagerService extends IPackageManager.Stub
            }
            return ((appInfo.isSystemApp() ? IPackageManagerNative.LOCATION_SYSTEM : 0)
                    | (appInfo.isVendor() ? IPackageManagerNative.LOCATION_VENDOR : 0)
                    | (appInfo.isProduct() ? IPackageManagerNative.LOCATION_PRODUCT : 0)
                    | (appInfo.isProductServices()
                            ? IPackageManagerNative.LOCATION_PRODUCT_SERVICES : 0));
                    | (appInfo.isProduct() ? IPackageManagerNative.LOCATION_PRODUCT : 0));
        }
    }