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

Commit 50b53700 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by android code review
Browse files

Merge "Fix for too many binder calls in packagemanager"

parents 60247737 9771a314
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2573,7 +2573,7 @@ public class PackageManagerService extends IPackageManager.Stub {
                    }
                }

                if (pi != null && !list.append(pi)) {
                if (pi != null && list.append(pi)) {
                    break;
                }
            }
@@ -2620,7 +2620,7 @@ public class PackageManagerService extends IPackageManager.Stub {
                    }
                }

                if (ai != null && !list.append(ai)) {
                if (ai != null && list.append(ai)) {
                    break;
                }
            }