Index: pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart |
diff --git a/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart b/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart |
index 9e33a1a0427480d289f6cafec0465a64e44ec3f3..4dd72cb15fa5a8f6f092b0bec889a51f01f623e6 100644 |
--- a/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart |
+++ b/pkg/analyzer_experimental/lib/src/generated/utilities_collection.dart |
@@ -16,7 +16,7 @@ class BooleanArray { |
* @return the value of the element at the given index |
* @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive |
*/ |
- static bool get(int array, Enum<Object> index) => get2(array, index.ordinal); |
+ static bool get(int array, Enum index) => get2(array, index.ordinal); |
/** |
* Return the value of the element at the given index. |
@@ -40,7 +40,7 @@ class BooleanArray { |
* @return the updated value of the array |
* @throws IndexOutOfBoundsException if the index is not between zero (0) and 31, inclusive |
*/ |
- static int set(int array, Enum<Object> index, bool value) => set2(array, index.ordinal, value); |
+ static int set(int array, Enum index, bool value) => set2(array, index.ordinal, value); |
/** |
* Set the value of the element at the given index to the given value. |