| Index: sdk/lib/collection/hash_set.dart
|
| diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart
|
| index 8bffb3415df823f4fef2cb0a8ebfb78766a5cb6d..4c919ecc4751d315144232dcdc4f6dff4d9c878c 100644
|
| --- a/sdk/lib/collection/hash_set.dart
|
| +++ b/sdk/lib/collection/hash_set.dart
|
| @@ -6,7 +6,6 @@ part of dart.collection;
|
|
|
| /** Common parts of [HashSet] and [LinkedHashSet] implementations. */
|
| abstract class _HashSetBase<E> extends SetBase<E> {
|
| -
|
| // The following two methods override the ones in SetBase.
|
| // It's possible to be more efficient if we have a way to create an empty
|
| // set of the correct type.
|
| @@ -96,9 +95,10 @@ abstract class HashSet<E> implements Set<E> {
|
| * and the `isValidKey` defaults to accepting all keys.
|
| * Such a map can be created directly using [HashSet.identity].
|
| */
|
| - external factory HashSet({bool equals(E e1, E e2),
|
| - int hashCode(E e),
|
| - bool isValidKey(potentialKey)});
|
| + external factory HashSet(
|
| + {bool equals(E e1, E e2),
|
| + int hashCode(E e),
|
| + bool isValidKey(potentialKey)});
|
|
|
| /**
|
| * Creates an unordered identity-based set.
|
|
|