| Index: sdk/lib/collection/set.dart
|
| diff --git a/sdk/lib/collection/set.dart b/sdk/lib/collection/set.dart
|
| index b98eb64b8e97a31db3064741870182b12f9fc958..a5febecc9d032837e5d94c41874d04fab8ac4468 100644
|
| --- a/sdk/lib/collection/set.dart
|
| +++ b/sdk/lib/collection/set.dart
|
| @@ -131,7 +131,7 @@ abstract class SetMixin<E> implements Set<E> {
|
| return result;
|
| }
|
|
|
| - String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
|
| + String toString() => _setToString(this);
|
|
|
| // Copied from IterableMixin.
|
| // Should be inherited if we had multi-level mixins.
|
|
|