| Index: test/generated_sdk/lib/core/list.dart
|
| diff --git a/test/generated_sdk/lib/core/list.dart b/test/generated_sdk/lib/core/list.dart
|
| index 828d03f7c55ce2b1847a1389213cd5e78982a015..fcd83709770a47b7c750c8d38548dfee7177d3cf 100644
|
| --- a/test/generated_sdk/lib/core/list.dart
|
| +++ b/test/generated_sdk/lib/core/list.dart
|
| @@ -105,7 +105,7 @@ abstract class List<E> implements Iterable<E>, EfficientLength {
|
| * The [length] must not be negative or null.
|
| */
|
| factory List.filled(int length, E fill) {
|
| - List result = new List<E>(length);
|
| + List<E> result = new List<E>(length);
|
| if (length != 0 && fill != null) {
|
| for (int i = 0; i < result.length; i++) {
|
| result[i] = fill;
|
|
|