Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: tools/dom/src/WrappedList.dart

Issue 13872007: Refactor removeRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebuild dom. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/src/WrappedList.dart
diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
index 4f697e37e61e238f0fa05a129621576507edab88..2d96f14298df05cb782d5594b9bf00e45e293e9e 100644
--- a/tools/dom/src/WrappedList.dart
+++ b/tools/dom/src/WrappedList.dart
@@ -124,7 +124,7 @@ class _WrappedList<E> implements List<E> {
_list.setRange(start, end, from, startFrom);
}
- void removeRange(int start, int length) { _list.removeRange(start, length); }
+ void removeRange(int start, int end) { _list.removeRange(start, end); }
void insertRange(int start, int length, [E fill]) {
_list.insertRange(start, length, fill);

Powered by Google App Engine
This is Rietveld 408576698