Index: sdk/lib/collection/list.dart |
diff --git a/sdk/lib/collection/list.dart b/sdk/lib/collection/list.dart |
index 1cc22ecf88508bd35c56b582e10ed37bdbd0c1a2..7f476dc9aa2023de4b9aceb1a924dc3584eee15c 100644 |
--- a/sdk/lib/collection/list.dart |
+++ b/sdk/lib/collection/list.dart |
@@ -434,11 +434,6 @@ abstract class ListMixin<E> implements List<E> { |
return -1; |
} |
- /** |
- * Returns the last index in the list [a] of the given [element], starting |
- * the search at index [startIndex] to 0. |
- * Returns -1 if [element] is not found. |
- */ |
int lastIndexOf(Object element, [int startIndex]) { |
if (startIndex == null) { |
startIndex = this.length - 1; |