Index: corelib/src/queue.dart |
diff --git a/corelib/src/queue.dart b/corelib/src/queue.dart |
index 80125b39a234193174c67e71503637928afac3a9..5cdb5ee0ded97563bf21ce8b4208e273a47a5866 100644 |
--- a/corelib/src/queue.dart |
+++ b/corelib/src/queue.dart |
@@ -7,7 +7,7 @@ |
* can iterate over the elements of a queue through [forEach] or with |
* an [Iterator]. |
*/ |
-interface Queue<E> extends Collection<E> factory DoubleLinkedQueue<E> { |
+interface Queue<E> extends Collection<E> default DoubleLinkedQueue<E> { |
/** |
* Creates a queue. |