namelessssssssssss opened a new pull request, #13807:
URL: https://github.com/apache/dubbo/pull/13807

   ## What is the purpose of the change
   
   URL#addAttributes used wrong `attributes` 
   
   ```java
   //old
   public URL addAttributes(Map<String, Object> attributes) {
           if (attributes != null) {
               attributes.putAll(attributes);
        return this;
   }
   //new
    public URL addAttributes(Map<String, Object> attributeMap) {
           if (attributeMap != null) {
               attributes.putAll(attributeMap);
           }
           return this;
   }
   ```
   
   ## Brief changelog
   * fix issues in URL#addAttributes
   * code style improvement
   
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to