| Index: runtime/lib/typed_data.dart
|
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart
|
| index f2fde0d5668650c6efb80b97611dc7545e4ab502..04f6fa9b1229889a77989c35b0e30d7336d67f60 100644
|
| --- a/runtime/lib/typed_data.dart
|
| +++ b/runtime/lib/typed_data.dart
|
| @@ -279,7 +279,6 @@ patch class ByteData {
|
| // the collection and list interfaces.
|
|
|
| abstract class _TypedListBase {
|
| -
|
| // Method(s) implementing the Collection interface.
|
| bool contains(element) => IterableMixinWorkaround.contains(this, element);
|
|
|
| @@ -506,7 +505,7 @@ abstract class _TypedListBase {
|
| // Method(s) implementing Object interface.
|
|
|
| String toString() {
|
| - return IterableMixinWorkaround.toStringIterable(this, '[', ']');
|
| + return ToString.iterableToString(this);
|
| }
|
|
|
|
|
|
|