Skip to content

Commit

Permalink
#5777 fix ApolloClient.Builder.okHttpClient() returns null instead of…
Browse files Browse the repository at this point in the history
… this (#5778)

(cherry picked from commit 807155d)
  • Loading branch information
japhib authored and BoD committed Apr 29, 2024
1 parent 61da6ab commit 86e0ecb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -225,7 +225,7 @@ public Builder webSocketServerUrl(@NotNull String webSocketServerUrl) {
public Builder okHttpClient(@NotNull OkHttpClient okHttpClient) {
this.callFactory = checkNotNull(okHttpClient, "okHttpClient is null");
this.webSocketFactory = okHttpClient;
return null;
return this;
}

/**
Expand Down

0 comments on commit 86e0ecb

Please sign in to comment.