Skip to content

Commit cdf1678

Browse files
fredquintanaAndroid (Google) Code Review
authored andcommitted
Merge "Changed SyncOperation.toKey() to not rely on the implementation of Account.toString()" into froyo
2 parents 005e240 + b4b7b48 commit cdf1678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/content/SyncOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public String toString() {
9090
private String toKey() {
9191
StringBuilder sb = new StringBuilder();
9292
sb.append("authority: ").append(authority);
93-
sb.append(" account: ").append(account);
93+
sb.append(" account {name=" + account.name + ", type=" + account.type + "}");
9494
sb.append(" extras: ");
9595
extrasToStringBuilder(extras, sb, true /* asKey */);
9696
return sb.toString();

0 commit comments

Comments
 (0)