andymc12 commented on a change in pull request #572: CXF-8089: Build Comma
Separated Values in url from Array/List Query Param
URL: https://github.com/apache/cxf/pull/572#discussion_r316470075
##########
File path:
rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java
##########
@@ -90,11 +90,19 @@
private static final String WEB_CLIENT_OPERATION_REPORTING =
"enable.webclient.operation.reporting";
private BodyWriter bodyWriter = new BodyWriter();
protected WebClient(String baseAddress) {
- this(convertStringToURI(baseAddress));
+ this(convertStringToURI(baseAddress), Collections.emptyMap());
Review comment:
Same comment as before wrt Collections.emptyMap() - it would probably
perform better if it were a constant. Same for lines 101 and 121.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services