We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9062422 commit 52588f2Copy full SHA for 52588f2
src/main/java/com/rabbitmq/tools/jsonrpc/JsonRpcClient.java
@@ -262,7 +262,7 @@ public Object call(String[] args)
262
263
Object[] actuals = new Object[arity];
264
for (int count = 0; count < params.length; count++) {
265
- actuals[count] = coerce(args[count + 1], params[count].type);
+ actuals[count] = coerce(args[count + 1], params[count].getType());
266
}
267
268
return call(method, actuals);
0 commit comments