| Index: utils/pub/yaml/model.dart
|
| diff --git a/utils/pub/yaml/model.dart b/utils/pub/yaml/model.dart
|
| index 08642be3602c948a32fd475fca9ef48890016276..75d9cf6d8b36e256057a4e6ffdcae1184e378021 100644
|
| --- a/utils/pub/yaml/model.dart
|
| +++ b/utils/pub/yaml/model.dart
|
| @@ -88,7 +88,8 @@ class _SequenceNode extends _Node {
|
| return true;
|
| }
|
|
|
| - String toString() => '$tag [${Strings.join(content.mappedBy((e) => '$e'), ', ')}]';
|
| + String toString() =>
|
| + '$tag [${Strings.join(content.mappedBy((e) => '$e'), ', ')}]';
|
|
|
| int get hashCode => super.hashCode ^ _hashCode(content);
|
|
|
|
|