@@ -178,7 +178,7 @@ private void invoke(String methodName, Object argument, OutputStream output, Str
178
178
}
179
179
180
180
/**
181
- * Reads a JSON-PRC response from the server. This blocks until
181
+ * Reads a JSON-RPC response from the server. This blocks until
182
182
* a response is received. If an id is given, responses that do
183
183
* not correspond, are disregarded.
184
184
*
@@ -310,7 +310,7 @@ private void internalWriteRequest(String methodName, Object arguments, OutputStr
310
310
private JsonNode readResponseNode (ReadContext context ) throws IOException {
311
311
context .assertReadable ();
312
312
JsonNode response = context .nextValue ();
313
- logger .debug ("JSON-PRC Response: {}" , response );
313
+ logger .debug ("JSON-RPC Response: {}" , response );
314
314
return response ;
315
315
}
316
316
@@ -504,7 +504,7 @@ public void invokeNotification(String methodName, Object argument, OutputStream
504
504
}
505
505
506
506
/**
507
- * Reads a JSON-PRC response from the server. This blocks until
507
+ * Reads a JSON-RPC response from the server. This blocks until
508
508
* a response is received.
509
509
*
510
510
* @param clazz the expected return type
@@ -519,7 +519,7 @@ public <T> T readResponse(Class<T> clazz, InputStream input) throws Throwable {
519
519
}
520
520
521
521
/**
522
- * Reads a JSON-PRC response from the server. This blocks until
522
+ * Reads a JSON-RPC response from the server. This blocks until
523
523
* a response is received.
524
524
*
525
525
* @param returnType the expected return type
@@ -532,7 +532,7 @@ public Object readResponse(Type returnType, InputStream input) throws Throwable
532
532
}
533
533
534
534
/**
535
- * Reads a JSON-PRC response from the server. This blocks until
535
+ * Reads a JSON-RPC response from the server. This blocks until
536
536
* a response is received. If an id is given, responses that do
537
537
* not correspond, are disregarded.
538
538
*
0 commit comments