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

Commit b6520038 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove PRODUCT_SERVICES from PackageManagerNative.getLocation." into qt-dev

parents 38ec14c2 b06b1017
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -23720,9 +23720,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));
        }
    }