Skip to content

Commit

Permalink
Fix bug highlighted by unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlockwood committed May 22, 2024
1 parent 9384163 commit abc8a8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private Builder(
RequestConfig requestConfig
) {
this.headers = new ArrayList<>(headers);
this.queryParams = new HashMap<>();
this.queryParams = new HashMap<>(queryParams);
this.httpAsyncResponseConsumerFactory = httpAsyncResponseConsumerFactory;
this.warningsHandler = warningsHandler;
this.requestConfig = requestConfig;
Expand Down

0 comments on commit abc8a8a

Please sign in to comment.