Skip to content

Commit

Permalink
DUBBO-627 fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kimi committed Jan 11, 2013
1 parent e3f8af7 commit b90c3b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Result invoke(Invoker<?> invoker, Invocation inv) throws RpcException {
if (inv.getMethodName().equals(Constants.$INVOKE)
&& inv.getArguments() != null
&& inv.getArguments().length == 3
&& ! invoker.getUrl().getParameter(Constants.GENERIC_KEY, false)) {
&& ! ProtocolUtils.isGeneric(invoker.getUrl().getParameter(Constants.GENERIC_KEY))) {
String name = ((String) inv.getArguments()[0]).trim();
String[] types = (String[]) inv.getArguments()[1];
Object[] args = (Object[]) inv.getArguments()[2];
Expand Down

0 comments on commit b90c3b3

Please sign in to comment.