diff options
| author | 2022-08-03 02:16:08 +0000 | |
|---|---|---|
| committer | 2022-08-03 02:16:08 +0000 | |
| commit | 4d334f4534c82a57df999dbccb8b37066be5cccb (patch) | |
| tree | 674857a7945097c721761a775b27db5d5455de22 | |
| parent | fc301ed47c1f29cddfcefbcaf95bbc92ba2f1216 (diff) | |
| parent | 1d502c375bdb8228fd1a3aff351cdda86b390b1d (diff) | |
Merge "Fix the bug where the added field into the toString implementation does not have a corresponding %s formatting." into tm-qpr-dev
| -rw-r--r-- | core/java/android/content/integrity/AppInstallMetadata.java | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/core/java/android/content/integrity/AppInstallMetadata.java b/core/java/android/content/integrity/AppInstallMetadata.java index 9874890ed09e..91b000774457 100644 --- a/core/java/android/content/integrity/AppInstallMetadata.java +++ b/core/java/android/content/integrity/AppInstallMetadata.java @@ -129,9 +129,18 @@ public final class AppInstallMetadata { @Override public String toString() { return String.format( - "AppInstallMetadata { PackageName = %s, AppCerts = %s, InstallerName = %s," - + " InstallerCerts = %s, VersionCode = %d, PreInstalled = %b, StampPresent =" - + " %b, StampVerified = %b, StampTrusted = %b, StampCert = %s }", + "AppInstallMetadata {" + + " PackageName = %s," + + " AppCerts = %s," + + " AppCertsLineage = %s," + + " InstallerName = %s," + + " InstallerCerts = %s," + + " VersionCode = %d," + + " PreInstalled = %b," + + " StampPresent = %b," + + " StampVerified = %b," + + " StampTrusted = %b," + + " StampCert = %s }", mPackageName, mAppCertificates, mAppCertificateLineage, |