Code Quality Improvement - Redundant Field Initializer

This commit is contained in:
Christian Ivan
2015-12-02 17:25:37 +07:00
parent 86898db7b1
commit 2b7a40b96a
2 changed files with 3 additions and 3 deletions

View File

@@ -5,8 +5,8 @@ public class Backoff {
private long ms = 100; private long ms = 100;
private long max = 10000; private long max = 10000;
private int factor = 2; private int factor = 2;
private double jitter = 0.0; private double jitter;
private int attempts = 0; private int attempts;
public Backoff() {} public Backoff() {}

View File

@@ -72,7 +72,7 @@ public class Manager extends Emitter {
/*package*/ static SSLContext defaultSSLContext; /*package*/ static SSLContext defaultSSLContext;
/*package*/ static HostnameVerifier defaultHostnameVerifier; /*package*/ static HostnameVerifier defaultHostnameVerifier;
/*package*/ ReadyState readyState = null; /*package*/ ReadyState readyState;
private boolean _reconnection; private boolean _reconnection;
private boolean skipReconnect; private boolean skipReconnect;