Merge branch '5.2.x'

This commit is contained in:
Juergen Hoeller
2020-07-20 07:21:36 +02:00
3 changed files with 13 additions and 12 deletions

View File

@@ -162,7 +162,7 @@ public class UriComponentsBuilder implements UriBuilder, Cloneable {
this.port = other.port;
this.pathBuilder = other.pathBuilder.cloneBuilder();
this.uriVariables.putAll(other.uriVariables);
this.queryParams.putAll(other.queryParams);
this.queryParams.addAll(other.queryParams);
this.fragment = other.fragment;
this.encodeTemplate = other.encodeTemplate;
this.charset = other.charset;