Skip to content

Commit

Permalink
fix override when interfaces is not null(#5860)
Browse files Browse the repository at this point in the history
  • Loading branch information
Augustvic committed Apr 2, 2020
1 parent e778d5a commit 280d54c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ public <T> T getProxy(Invoker<T> invoker, boolean generic) throws RpcException {
interfaces[0] = invoker.getInterface();
interfaces[1] = EchoService.class;
for (int i = 0; i < types.length; i++) {
interfaces[i + 1] = ReflectUtils.forName(types[i]);
interfaces[i + 2] = ReflectUtils.forName(types[i]);
}
}
}
Expand Down

0 comments on commit 280d54c

Please sign in to comment.