| Index: pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/utilities_collection.dart b/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| index 6a71b97f008649465719c45cccda9649415bcab2..453ee378c3d8be83aeb5a402e5661425375d753a 100644
|
| --- a/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| +++ b/pkg/analyzer/lib/src/generated/utilities_collection.dart
|
| @@ -466,25 +466,6 @@ class DirectedGraph_SccFinder<N> {
|
| }
|
|
|
| /**
|
| - * The class `ListUtilities` defines utility methods useful for working with [List
|
| - ].
|
| - */
|
| -class ListUtilities {
|
| - /**
|
| - * Add all of the elements in the given array to the given list.
|
| - *
|
| - * @param list the list to which the elements are to be added
|
| - * @param elements the elements to be added to the list
|
| - */
|
| - static void addAll(List list, List<Object> elements) {
|
| - int count = elements.length;
|
| - for (int i = 0; i < count; i++) {
|
| - list.add(elements[i]);
|
| - }
|
| - }
|
| -}
|
| -
|
| -/**
|
| * The interface `MapIterator` defines the behavior of objects that iterate over the entries
|
| * in a map.
|
| *
|
|
|