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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart

Issue 14173003: Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart
diff --git a/editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart b/editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart
index dddee7aedf2fcc5dba34ce8832abb627315d2b9c..6242aa877de02fff88dc9d47193a2727e5f6b83f 100644
--- a/editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart
+++ b/editor/util/plugins/com.google.dart.java2dart/resources/ast_include.dart
@@ -29,7 +29,7 @@ class NodeList<E extends ASTNode> extends ListWrapper<E> {
owner.becomeParentOf(node);
elements.add(node);
}
- bool addAll(Collection<E> nodes) {
+ bool addAll(Iterable<E> nodes) {
if (nodes != null) {
for (E node in nodes) {
add(node);
@@ -65,4 +65,4 @@ class NodeList<E extends ASTNode> extends ListWrapper<E> {
ASTNode getOwner() {
return owner;
}
-}
+}
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/resources/java_core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698