beiwei30 opened a new issue #1731: checkMultiExtension in 
com.alibaba.dubbo.config.AbstractInterfaceConfig should be in setter instead of 
getter
URL: https://github.com/apache/incubator-dubbo/issues/1731
 
 
   checkMultiExtension in com.alibaba.dubbo.config.AbstractInterfaceConfig 
should be in setter instead of getter
   
   ```java
       @Parameter(key = Constants.INVOKER_LISTENER_KEY, append = true)
       public String getListener() {
           checkMultiExtension(InvokerListener.class, "listener", listener);
           return listener;
       }
   
       public void setListener(String listener) {
           this.listener = listener;
       }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to