| Index: tool/input_sdk/patch/core_patch.dart
|
| diff --git a/tool/input_sdk/patch/core_patch.dart b/tool/input_sdk/patch/core_patch.dart
|
| index de2058dab768fa266a5a09be4330f903eae3ba82..dfb6ac0a12335dc8f9a0a653b4a926b78e277424 100644
|
| --- a/tool/input_sdk/patch/core_patch.dart
|
| +++ b/tool/input_sdk/patch/core_patch.dart
|
| @@ -268,7 +268,7 @@ class List<E> {
|
|
|
| @patch
|
| 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;
|
|
|