| Index: sdk/lib/collection/queue.dart
|
| diff --git a/sdk/lib/collection/queue.dart b/sdk/lib/collection/queue.dart
|
| index 69b18d233053ddac4fded0edc5dc519447382fa6..70f711191c12460c62480238d7175d1853be8c54 100644
|
| --- a/sdk/lib/collection/queue.dart
|
| +++ b/sdk/lib/collection/queue.dart
|
| @@ -610,7 +610,7 @@ class ListQueue<E> extends ListIterable<E> implements Queue<E> {
|
| }
|
|
|
| void addAll(Iterable<E> elements) {
|
| - if (elements is List/*<E>*/) {
|
| + if (elements is List<E>) {
|
| List<E> list = elements;
|
| int addCount = list.length;
|
| int length = this.length;
|
|
|