Loading services/java/com/android/server/PackageManagerService.java +7 −2 Original line number Diff line number Diff line Loading @@ -9787,13 +9787,18 @@ class PackageManagerService extends IPackageManager.Stub { if (doGc) { Runtime.getRuntime().gc(); } // List stale containers. // List stale containers and destroy stale temporary containers. if (removeCids != null) { for (String cid : removeCids) { if (cid.startsWith(mTempContainerPrefix)) { Log.i(TAG, "Destroying stale temporary container " + cid); PackageHelper.destroySdDir(cid); } else { Log.w(TAG, "Container " + cid + " is stale"); } } } } /* * Utility method to unload a list of specified containers Loading Loading
services/java/com/android/server/PackageManagerService.java +7 −2 Original line number Diff line number Diff line Loading @@ -9787,13 +9787,18 @@ class PackageManagerService extends IPackageManager.Stub { if (doGc) { Runtime.getRuntime().gc(); } // List stale containers. // List stale containers and destroy stale temporary containers. if (removeCids != null) { for (String cid : removeCids) { if (cid.startsWith(mTempContainerPrefix)) { Log.i(TAG, "Destroying stale temporary container " + cid); PackageHelper.destroySdDir(cid); } else { Log.w(TAG, "Container " + cid + " is stale"); } } } } /* * Utility method to unload a list of specified containers Loading