Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrthomas committed Mar 8, 2024
1 parent 17300d0 commit 3f8477e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ public HttpRequestBuilder param(String name, String... values) {

public HttpRequestBuilder param(String name, List<String> values) {
if (params == null) {
params = new HashMap<>();
params = new LinkedHashMap<>();
}
List<String> notNullValues = values.stream().filter(v -> v != null).collect(Collectors.toList());
if (!notNullValues.isEmpty()) {
Expand Down

0 comments on commit 3f8477e

Please sign in to comment.