Skip to content

Commit 54ab88b

Browse files
committed
commit changes
1 parent dc91406 commit 54ab88b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ParseLiveQuery/src/main/java/com/parse/OkHttp3SocketClientFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ private synchronized void setState(State newState) {
120120
this.state = newState;
121121
this.webSocketClientCallback.stateChanged();
122122
}
123-
124-
125123
}
126124

127125
}

ParseLiveQuery/src/main/java/com/parse/ParseLiveQueryClientImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
this(uri, new OkHttp3SocketClientFactory(new OkHttpClient()), Task.BACKGROUND_EXECUTOR);
4343
}
4444

45-
/* package */ ParseLiveQueryClientImpl(URI uri, OkHttpClient okHttpClient) {
46-
this(uri, new OkHttp3SocketClientFactory(okHttpClient), Task.BACKGROUND_EXECUTOR);
45+
/* package */ ParseLiveQueryClientImpl(URI uri, WebSocketClientFactory webSocketClientFactory) {
46+
this(uri, webSocketClientFactory, Task.BACKGROUND_EXECUTOR);
4747
}
4848

4949
/* package */ ParseLiveQueryClientImpl(URI uri, WebSocketClientFactory webSocketClientFactory, Executor taskExecutor) {

0 commit comments

Comments
 (0)