| Index: sdk/lib/collection/splay_tree.dart
|
| diff --git a/sdk/lib/collection/splay_tree.dart b/sdk/lib/collection/splay_tree.dart
|
| index 7dac687f20874217751452209be66a4e82c23445..a0c3624d265b0ffb517b597118cba7c4d0deef6b 100644
|
| --- a/sdk/lib/collection/splay_tree.dart
|
| +++ b/sdk/lib/collection/splay_tree.dart
|
| @@ -241,9 +241,7 @@ abstract class _SplayTree<K> {
|
| * method. This also means that `null` is *not* allowed as a key.
|
| */
|
| class SplayTreeMap<K, V> extends _SplayTree<K> implements Map<K, V> {
|
| - // TODO(ngeoffray): Restore type when feature is implemented in dart2js
|
| - // checked mode. http://dartbug.com/7733
|
| - Function /* Comparator<K> */_comparator;
|
| + Comparator<K> _comparator;
|
|
|
| SplayTreeMap([int compare(K key1, K key2)])
|
| : _comparator = (compare == null) ? Comparable.compare : compare;
|
|
|