Skip to content

Commit

Permalink
#1731: checkMultiExtension in com.alibaba.dubbo.config.AbstractInter…
Browse files Browse the repository at this point in the history
…faceConfig should be in setter instead of getter (#1732)
  • Loading branch information
beiwei30 authored May 4, 2018
1 parent 04ffae0 commit e6b85fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,11 @@ public void setFilter(String filter) {

@Parameter(key = Constants.INVOKER_LISTENER_KEY, append = true)
public String getListener() {
checkMultiExtension(InvokerListener.class, "listener", listener);
return listener;
}

public void setListener(String listener) {
checkMultiExtension(InvokerListener.class, "listener", listener);
this.listener = listener;
}

Expand Down

0 comments on commit e6b85fd

Please sign in to comment.