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

This commit is contained in:
TreeHugger Robot
2019-04-12 17:13:11 +00:00
committed by Android (Google) Code Review

View File

@@ -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));
}
}