Merge "Changed SyncOperation.toKey() to not rely on the implementation of Account.toString()" into froyo
This commit is contained in:
committed by
Android (Google) Code Review
commit
cdf16787fc
@@ -90,7 +90,7 @@ public class SyncOperation implements Comparable {
|
|||||||
private String toKey() {
|
private String toKey() {
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("authority: ").append(authority);
|
sb.append("authority: ").append(authority);
|
||||||
sb.append(" account: ").append(account);
|
sb.append(" account {name=" + account.name + ", type=" + account.type + "}");
|
||||||
sb.append(" extras: ");
|
sb.append(" extras: ");
|
||||||
extrasToStringBuilder(extras, sb, true /* asKey */);
|
extrasToStringBuilder(extras, sb, true /* asKey */);
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
Reference in New Issue
Block a user