java-client: fix some javadoc comments (#21932)

* java-client: fix some javadoc comments

* update samples
This commit is contained in:
Ruben Hönle
2025-09-09 19:44:36 +02:00
committed by GitHub
parent 7b3de8dbce
commit 278d7ae4c9
16 changed files with 48 additions and 48 deletions

View File

@@ -160,8 +160,8 @@ public class ApiClient {
/**
* Set base path
*
* @param basePath Base path of the URL (e.g http://localhost:3000
* @return An instance of OkHttpClient
* @param basePath Base path of the URL (e.g http://localhost:3000)
* @return An instance of ApiClient
*/
public ApiClient setBasePath(String basePath) {
this.basePath = basePath;
@@ -209,7 +209,7 @@ public class ApiClient {
* Set HTTP client, which must never be null.
*
* @param newHttpClient An instance of OkHttpClient
* @return Api Client
* @return ApiClient
* @throws java.lang.NullPointerException when newHttpClient is null
*/
public ApiClient setHttpClient(OkHttpClient newHttpClient) {