Skip to content

Commit

Permalink
fix issue taskadapter#360
Browse files Browse the repository at this point in the history
  • Loading branch information
SoulHunt3r committed Jan 21, 2021
1 parent 5d0b64a commit 80908bf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ public URI createURI(String query, RequestParam... param) {
*/
private URI createURI(String query,
Collection<RequestParam> origParams) {
var distinctParams = distinct(origParams);
//var distinctParams = distinct(origParams);
var distinctParams = origParams;
var nameValueParams = toNameValue(distinctParams);
try {
var builder = new URIBuilder(baseURL.toURI());
Expand Down

0 comments on commit 80908bf

Please sign in to comment.