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

Unified Diff: sdk/lib/_collection_dev/list.dart

Issue 23543007: Remove last vestiges of removeAll from typed lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« no previous file with comments | « runtime/lib/typed_data.dart ('k') | tests/co19/co19-co19.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_collection_dev/list.dart
diff --git a/sdk/lib/_collection_dev/list.dart b/sdk/lib/_collection_dev/list.dart
index 971f7ad2da06cbe677cfa87ff893b5827841ee8b..3266d6c0e713998a9a2a2da6ccb94d8117a995c8 100644
--- a/sdk/lib/_collection_dev/list.dart
+++ b/sdk/lib/_collection_dev/list.dart
@@ -125,16 +125,6 @@ abstract class UnmodifiableListMixin<E> {
"Cannot remove from an unmodifiable list");
}
- void removeAll(Iterable elements) {
- throw new UnsupportedError(
- "Cannot remove from an unmodifiable list");
- }
-
- void retainAll(Iterable elements) {
- throw new UnsupportedError(
- "Cannot remove from an unmodifiable list");
- }
-
void removeWhere(bool test(E element)) {
throw new UnsupportedError(
"Cannot remove from an unmodifiable list");
« no previous file with comments | « runtime/lib/typed_data.dart ('k') | tests/co19/co19-co19.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698