Index: corelib/src/implementation/queue.dart |
diff --git a/corelib/src/implementation/queue.dart b/corelib/src/implementation/queue.dart |
index 418e8ed226e9303946dea200a45672866419233b..e4d1ddbab8a52ac34552b9aa9f1aaa8a80acf215 100644 |
--- a/corelib/src/implementation/queue.dart |
+++ b/corelib/src/implementation/queue.dart |
@@ -102,9 +102,8 @@ class DoubleLinkedQueue<E> implements Queue<E> { |
_sentinel = new _DoubleLinkedQueueEntrySentinel<E>(); |
} |
- // See issue 417. Works in the vm, fails in dartc and frog. |
- factory DoubleLinkedQueue.from(Iterable/*<E>*/ other) { |
- Queue/*<E>*/ list = new DoubleLinkedQueue(); |
+ factory DoubleLinkedQueue.from(Iterable<E> other) { |
+ Queue<E> list = new DoubleLinkedQueue(); |
for (final e in other) { |
list.addLast(e); |
} |