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

Commit c477c679 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit 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 42ea9e9d e9a45e09
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,