DUBBO-454 支持字节流泛化调用

This commit is contained in:
kimi 2012-07-19 13:41:26 +08:00
parent edbb49e631
commit 7376e042e2
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public abstract class AbstractReferenceConfig extends AbstractInterfaceConfig {
@Parameter(excluded = true)
public Boolean isGeneric() {
return getGeneric() == null ? null : ProtocolUtils.isGeneric(getGeneric());
return ProtocolUtils.isGeneric(generic);
}
public void setGeneric(Boolean generic) {