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

Commit 930d6c3c authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue #3056500: Problem report for ASTRO" into gingerbread

parents f7872780 817c2475
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -400,7 +400,11 @@ public class ApplicationInfo extends PackageItemInfo implements Parcelable {
        pw.println(prefix + "uid=" + uid + " flags=0x" + Integer.toHexString(flags)
                + " theme=0x" + Integer.toHexString(theme));
        pw.println(prefix + "sourceDir=" + sourceDir);
        if (!sourceDir.equals(publicSourceDir)) {
        if (sourceDir == null) {
            if (publicSourceDir != null) {
                pw.println(prefix + "publicSourceDir=" + publicSourceDir);
            }
        } else if (!sourceDir.equals(publicSourceDir)) {
            pw.println(prefix + "publicSourceDir=" + publicSourceDir);
        }
        if (resourceDirs != null) {