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

Commit 8f0e6068 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correct debugging of accountsForUser binder cache"

parents 4527135d 1d254f2e
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -388,6 +388,16 @@ public class AccountManager {
                throw e.rethrowFromSystemServer();
            }
        }
        @Override
        protected boolean debugCompareQueryResults(Account[] l, Account[] r) {
            if (l == r) {
                return true;
            } else if (l == null || r == null) {
                return false;
            } else {
                return Arrays.equals(l, r);
            }
        }
    };

    /**