| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index 5756544177f7794c6aff1e312845bd94e741a02f..8b3dda68f89bbf25d6b95d8a035814de6d520b40 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -21,5 +21,5 @@ class UnmodifiableListView<E> extends UnmodifiableListBase<E> {
|
| */
|
| UnmodifiableListView(Iterable<E> source) : _source = source;
|
| int get length => _source.length;
|
| - E operator[](int index) => _source.elementAt(index);
|
| + E operator [](int index) => _source.elementAt(index);
|
| }
|
|
|