Skip to content

Commit b4b7b48

Browse files
committed
Changed SyncOperation.toKey() to not rely on the implementation of
Account.toString() bug: 2898033 Change-Id: I6bfac976127190d2d667312df7aa9c7d57b21555
1 parent 753e560 commit b4b7b48

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)