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.
2 parents 669696f + 2b7a40b commit 1ef3b2cCopy full SHA for 1ef3b2c
src/main/java/io/socket/backo/Backoff.java
@@ -8,8 +8,8 @@ public class Backoff {
8
private long ms = 100;
9
private long max = 10000;
10
private int factor = 2;
11
- private double jitter = 0.0;
12
- private int attempts = 0;
+ private double jitter;
+ private int attempts;
13
14
public Backoff() {}
15
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