| Index: utils/pub/git_source.dart
|
| diff --git a/utils/pub/git_source.dart b/utils/pub/git_source.dart
|
| index f37db918ecf72b79012ecd97f221ddf369d4308b..ab2758efdaeb5f32e4849ce39c4da1ac60872d06 100644
|
| --- a/utils/pub/git_source.dart
|
| +++ b/utils/pub/git_source.dart
|
| @@ -79,7 +79,7 @@ class GitSource extends Source {
|
|
|
| if (!description.isEmpty) {
|
| var plural = description.length > 1;
|
| - var keys = Strings.join(description.keys, ', ');
|
| + var keys = description.keys.join(', ');
|
| throw new FormatException("Invalid key${plural ? 's' : ''}: $keys.");
|
| }
|
| }
|
|
|