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

Commit cc057784 authored by Jackal Guo's avatar Jackal Guo Committed by Android (Google) Code Review
Browse files

Merge "Remove unused interface and implementation" into sc-dev

parents 236f2686 9440df91
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -585,11 +585,6 @@ interface IPackageManager {
    boolean performDexOptSecondary(String packageName,
            String targetCompilerFilter, boolean force);

    /**
    * Ask the package manager to compile layouts in the given package.
    */
    boolean compileLayouts(String packageName);

    /**
     * Ask the package manager to dump profiles associated with a package.
     */
+0 −15
Original line number Diff line number Diff line
@@ -12798,21 +12798,6 @@ public class PackageManagerService extends IPackageManager.Stub
        return performDexOpt(new DexoptOptions(packageName, compilerFilter, flags));
    }
    /**
    * Ask the package manager to compile layouts in the given package.
    */
    @Override
    public boolean compileLayouts(String packageName) {
        AndroidPackage pkg;
        synchronized (mLock) {
            pkg = mPackages.get(packageName);
            if (pkg == null) {
                return false;
            }
        }
        return mViewCompiler.compileLayouts(pkg);
    }
    /*package*/ boolean performDexOpt(DexoptOptions options) {
        if (getInstantAppPackageName(Binder.getCallingUid()) != null) {
            return false;