Index: sdk/lib/core/list.dart |
diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart |
index b98743cd9400ba4e2f91f345cd93cde51edfba97..114b4db918f591a4927c4fe6a6a24e216a87180f 100644 |
--- a/sdk/lib/core/list.dart |
+++ b/sdk/lib/core/list.dart |
@@ -23,14 +23,6 @@ abstract class List<E> implements Collection<E> { |
external factory List.fixedLength(int length, {E fill: null}); |
/** |
- * Creates an list of the given [length] where each entry is |
- * filled with [fill]. |
- * |
- * The length of the returned list is not fixed. |
- */ |
- external factory List.filled(int length, E fill); |
- |
- /** |
* Creates an list with the elements of [other]. The order in |
* the list will be the order provided by the iterator of [other]. |
* |