| Index: utils/pub/yaml/yaml_map.dart
|
| diff --git a/utils/pub/yaml/yaml_map.dart b/utils/pub/yaml/yaml_map.dart
|
| index f5b857f5904235ef65b18a448dab66d64bd5c506..b4e9092e784857974233724e4170f17db3cb8d28 100644
|
| --- a/utils/pub/yaml/yaml_map.dart
|
| +++ b/utils/pub/yaml/yaml_map.dart
|
| @@ -35,7 +35,7 @@ class YamlMap implements Map {
|
| bool isEmpty() => _map.isEmpty();
|
| String toString() => _map.toString();
|
|
|
| - int hashCode() => _hashCode(_map);
|
| + int get hashCode => _hashCode(_map);
|
|
|
| bool operator ==(other) {
|
| if (other is! YamlMap) return false;
|
| @@ -67,7 +67,7 @@ class _WrappedHashKey {
|
|
|
| _WrappedHashKey(this.value);
|
|
|
| - int hashCode() => _hashCode(value);
|
| + int get hashCode => _hashCode(value);
|
|
|
| String toString() => value.toString();
|
|
|
| @@ -107,7 +107,7 @@ int _hashCode(obj, [List parents]) {
|
| }
|
| return hash;
|
| }
|
| - return obj.hashCode();
|
| + return obj.hashCode;
|
| } finally {
|
| parents.removeLast();
|
| }
|
|
|