diff options
| author | TreeHugger Robot <treehugger-gerrit@google.com> | 2020-02-12 10:33:03 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-02-12 10:33:03 +0000 |
| commit | 95f80a79984c963d9129ca846e1d0274252df976 (patch) | |
| tree | bc3b780d7e795fa69e47c95b129d9c9e6c07d5c2 /core/java | |
| parent | 5ff740f15b22eed79a4ec49b38e88b843a465a6a (diff) | |
| parent | 5af3f917a796a5db19dcd28e5c9caabf733b2802 (diff) | |
Merge "Handle prefix when dumping ApplicationInfo#crossProfile"
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/content/pm/ApplicationInfo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/content/pm/ApplicationInfo.java b/core/java/android/content/pm/ApplicationInfo.java index b998539dee9c..d251ba9519db 100644 --- a/core/java/android/content/pm/ApplicationInfo.java +++ b/core/java/android/content/pm/ApplicationInfo.java @@ -1389,7 +1389,7 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable { pw.println(prefix + "fullBackupContent=" + (fullBackupContent < 0 ? "false" : "true")); } - pw.println("crossProfile=" + (crossProfile ? "true" : "false")); + pw.println(prefix + "crossProfile=" + (crossProfile ? "true" : "false")); if (networkSecurityConfigRes != 0) { pw.println(prefix + "networkSecurityConfigRes=0x" + Integer.toHexString(networkSecurityConfigRes)); |
