Skip to content

Commit

Permalink
apache#1731: checkMultiExtension in com.alibaba.dubbo.config.Abstrac…
Browse files Browse the repository at this point in the history
…tInterfaceConfig should be in setter instead of getter (apache#1732)
  • Loading branch information
beiwei30 committed May 4, 2018
1 parent 4effd18 commit 836b1b1
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 836b1b1

Please sign in to comment.