Index: tools/dom/src/WrappedList.dart |
diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart |
index 9ca13dd519fab4867c597749657dfe6da968b5ea..7bec71467e80db72ed5902376a9b4c152f54cf80 100644 |
--- a/tools/dom/src/WrappedList.dart |
+++ b/tools/dom/src/WrappedList.dart |
@@ -116,11 +116,7 @@ class _WrappedList<E> implements List<E> { |
_list.setRange(start, end, iterable, skipCount); |
} |
- void removeRange(int start, int length) { _list.removeRange(start, length); } |
- |
- void insertRange(int start, int length, [E fill]) { |
- _list.insertRange(start, length, fill); |
- } |
+ void removeRange(int start, int end) { _list.removeRange(start, end); } |
Map<int, E> asMap() => _list.asMap(); |