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

Commit 5005a6c0 authored by Fred Quintana's avatar Fred Quintana Committed by Android Git Automerger
Browse files

am cdf16787: Merge "Changed SyncOperation.toKey() to not rely on the...

am cdf16787: Merge "Changed SyncOperation.toKey() to not rely on the implementation of Account.toString()" into froyo

Merge commit 'cdf16787' into gingerbread

* commit 'cdf16787':
  Changed SyncOperation.toKey() to not rely on the implementation of
parents 499b7438 cdf16787
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ public class SyncOperation implements Comparable {
    private String toKey() {
        StringBuilder sb = new StringBuilder();
        sb.append("authority: ").append(authority);
        sb.append(" account: ").append(account);
	sb.append(" account {name=" + account.name + ", type=" + account.type + "}");
        sb.append(" extras: ");
        extrasToStringBuilder(extras, sb, true /* asKey */);
        return sb.toString();