| Index: packages/quiver/lib/src/collection/delegates/map.dart
|
| diff --git a/packages/quiver/lib/src/collection/delegates/map.dart b/packages/quiver/lib/src/collection/delegates/map.dart
|
| index befd5aa9abd16a5e13cef182a58e860cb9d80424..1e66c59bd963a3479d4e8a2c3edfcae2c70b7d58 100644
|
| --- a/packages/quiver/lib/src/collection/delegates/map.dart
|
| +++ b/packages/quiver/lib/src/collection/delegates/map.dart
|
| @@ -14,18 +14,16 @@
|
|
|
| part of quiver.collection;
|
|
|
| -/**
|
| - * An implementation of [Map] that delegates all methods to another [Map].
|
| - * For instance you can create a FruitMap like this :
|
| - *
|
| - * class FruitMap extends DelegatingMap<String, Fruit> {
|
| - * final Map<String, Fruit> _fruits = {};
|
| - *
|
| - * Map<String, Fruit> get delegate => _fruits;
|
| - *
|
| - * // custom methods
|
| - * }
|
| - */
|
| +/// An implementation of [Map] that delegates all methods to another [Map].
|
| +/// For instance you can create a FruitMap like this :
|
| +///
|
| +/// class FruitMap extends DelegatingMap<String, Fruit> {
|
| +/// final Map<String, Fruit> _fruits = {};
|
| +///
|
| +/// Map<String, Fruit> get delegate => _fruits;
|
| +///
|
| +/// // custom methods
|
| +/// }
|
| abstract class DelegatingMap<K, V> implements Map<K, V> {
|
| Map<K, V> get delegate;
|
|
|
|
|