diff options
| author | Calin Juravle <calin@google.com> | 2017-03-03 17:04:55 -0800 |
|---|---|---|
| committer | Calin Juravle <calin@google.com> | 2017-03-06 17:59:12 -0800 |
| commit | 74f0a3450cd598f52b2c68c43531b1a27fb4e1ce (patch) | |
| tree | df1495480dacd85fccdfdb920060edb5842771df /core/java/android/os/Environment.java | |
| parent | 5603a16e9e32bd202607957529147be0392c1a77 (diff) | |
PackageManager: Clean up code related to foreign dex use
We simplified the way we track whether or not a dex file is used by
other apps. DexManager in the framework keeps track of the data and we
no longer need file markers on disk.
Test: device boots, foreign dex markers are not created anymore
Bug: 32871170
Change-Id: I3660e2f3913a73904181449c2d910af0a0477950
Diffstat (limited to 'core/java/android/os/Environment.java')
| -rw-r--r-- | core/java/android/os/Environment.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/java/android/os/Environment.java b/core/java/android/os/Environment.java index 39f4d428a230..5b0e5bbce2f7 100644 --- a/core/java/android/os/Environment.java +++ b/core/java/android/os/Environment.java @@ -301,11 +301,6 @@ public class Environment { } /** {@hide} */ - public static File getDataProfilesDeForeignDexDirectory(int userId) { - return buildPath(getDataProfilesDeDirectory(userId), "foreign-dex"); - } - - /** {@hide} */ public static File getDataAppDirectory(String volumeUuid) { return new File(getDataDirectory(volumeUuid), "app"); } |
