| Index: pkg/http/lib/src/utils.dart
|
| diff --git a/pkg/http/lib/src/utils.dart b/pkg/http/lib/src/utils.dart
|
| index a70e9370058b744f7efc11c221b19d7cd6f7e161..739a567b18b615a3b6e4af4fa8c8dbe9a13d7270 100644
|
| --- a/pkg/http/lib/src/utils.dart
|
| +++ b/pkg/http/lib/src/utils.dart
|
| @@ -38,7 +38,7 @@ String mapToQuery(Map<String, String> map) {
|
| var pairs = <List<String>>[];
|
| map.forEach((key, value) =>
|
| pairs.add([encodeUriComponent(key), encodeUriComponent(value)]));
|
| - return Strings.join(pairs.map((pair) => "${pair[0]}=${pair[1]}"), "&");
|
| + return pairs.map((pair) => "${pair[0]}=${pair[1]}").join("&");
|
| }
|
|
|
| /// Adds all key/value pairs from [source] to [destination], overwriting any
|
|
|