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

Commit 8c4e779a authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am e112b744: am 930d6c3c: Merge "Fix issue #3056500: Problem report for ASTRO" into gingerbread

Merge commit 'e112b744'

* commit 'e112b744':
  Fix issue #3056500: Problem report for ASTRO
parents 2cddeb4b e112b744
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -399,7 +399,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) {