Skip to content

Commit e9350dc

Browse files
committed
Merge pull request briandilley#124 from dzolo/master
JsonRpcClient#readResponse public
2 parents 812a40b + 9ed1335 commit e9350dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/googlecode/jsonrpc4j/JsonRpcClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ public <T> T readResponse(Class<T> clazz, InputStream input) throws Throwable {
496496
* @return the object returned by the JSON-RPC response
497497
* @throws Throwable on error
498498
*/
499-
Object readResponse(Type returnType, InputStream input) throws Throwable {
499+
public Object readResponse(Type returnType, InputStream input) throws Throwable {
500500
return readResponse(returnType, input, null);
501501
}
502502

0 commit comments

Comments
 (0)