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

Commit 92781a26 authored by Ömer Yaveroğlu's avatar Ömer Yaveroğlu Committed by Android (Google) Code Review
Browse files

Merge "Fix the bug where the added field into the toString implementation does...

Merge "Fix the bug where the added field into the toString implementation does not have a corresponding %s formatting."
parents 6ab17cec c6ba7aea
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -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,