Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fixed small miss of not returning a builder
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrank13 committed Sep 24, 2023
1 parent 5b7f527 commit b058aea
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -602,8 +602,9 @@ public Builder withPolicy(ReconnectionPolicy policy) {
return this;
}

public void setWebSocketSendExecutorService(ExecutorService webSocketSendExecutorService) {
public Builder setWebSocketSendExecutorService(ExecutorService webSocketSendExecutorService) {
this.webSocketSendExecutorService = webSocketSendExecutorService;
return this;
}

public WsProvider build() {
Expand Down

0 comments on commit b058aea

Please sign in to comment.