| Index: corelib/src/set.dart
|
| diff --git a/corelib/src/set.dart b/corelib/src/set.dart
|
| index e8febeb723e1d9f75e1163d10de7216a8bf3662b..5893cf22ff2307e37448770cded7a2ead97a6905 100644
|
| --- a/corelib/src/set.dart
|
| +++ b/corelib/src/set.dart
|
| @@ -7,8 +7,7 @@
|
| * without duplicates.
|
| */
|
| interface Set<E> extends Collection<E>
|
| - factory HashSetImplementation {
|
| -// See issue 417. Works in the vm, fails in dartc and frog.
|
| + default HashSetImplementation<E extends Hashable> {
|
| Set();
|
|
|
| /**
|
| @@ -70,8 +69,7 @@ interface Set<E> extends Collection<E>
|
| }
|
|
|
| interface HashSet<E extends Hashable> extends Set<E>
|
| - factory HashSetImplementation {
|
| -// See issue 417. Works in the vm, fails in dartc and frog.
|
| + default HashSetImplementation<E extends Hashable> {
|
| HashSet();
|
|
|
| /**
|
|
|