Skip to content

Commit 52588f2

Browse files
committed
Use getter instead of property
References #429
1 parent 9062422 commit 52588f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/rabbitmq/tools/jsonrpc/JsonRpcClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public Object call(String[] args)
262262

263263
Object[] actuals = new Object[arity];
264264
for (int count = 0; count < params.length; count++) {
265-
actuals[count] = coerce(args[count + 1], params[count].type);
265+
actuals[count] = coerce(args[count + 1], params[count].getType());
266266
}
267267

268268
return call(method, actuals);

0 commit comments

Comments
 (0)