| Index: sdk/lib/collection/hash_set.dart
|
| diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart
|
| index 723d5167b44ea564afaac2adbe3c3d6fa57f1262..f3cd262e5feba3148c3f72629301ee89514d9c01 100644
|
| --- a/sdk/lib/collection/hash_set.dart
|
| +++ b/sdk/lib/collection/hash_set.dart
|
| @@ -32,7 +32,7 @@ abstract class _HashSetBase<E> extends SetBase<E> {
|
| // Subclasses can optimize this further.
|
| Set<E> toSet() => _newSet()..addAll(this);
|
|
|
| - String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
|
| + String toString() => _setToString(this);
|
| }
|
|
|
| /**
|
|
|