We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86898db commit 2b7a40bCopy full SHA for 2b7a40b
src/main/java/io/socket/backo/Backoff.java
@@ -5,8 +5,8 @@ public class Backoff {
5
private long ms = 100;
6
private long max = 10000;
7
private int factor = 2;
8
- private double jitter = 0.0;
9
- private int attempts = 0;
+ private double jitter;
+ private int attempts;
10
11
public Backoff() {}
12
src/main/java/io/socket/client/Manager.java
@@ -72,7 +72,7 @@ public class Manager extends Emitter {
72
/*package*/ static SSLContext defaultSSLContext;
73
/*package*/ static HostnameVerifier defaultHostnameVerifier;
74
75
- /*package*/ ReadyState readyState = null;
+ /*package*/ ReadyState readyState;
76
77
private boolean _reconnection;
78
private boolean skipReconnect;
0 commit comments