Merge pull request #258 from DevFactory/release/redundant-field-initializer-fix-1
Code Quality Improvement - Redundant Field Initializer
This commit is contained in:
@@ -8,8 +8,8 @@ public class Backoff {
|
||||
private long ms = 100;
|
||||
private long max = 10000;
|
||||
private int factor = 2;
|
||||
private double jitter = 0.0;
|
||||
private int attempts = 0;
|
||||
private double jitter;
|
||||
private int attempts;
|
||||
|
||||
public Backoff() {}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@ public class Manager extends Emitter {
|
||||
/*package*/ static SSLContext defaultSSLContext;
|
||||
/*package*/ static HostnameVerifier defaultHostnameVerifier;
|
||||
|
||||
/*package*/ ReadyState readyState = null;
|
||||
/*package*/ ReadyState readyState;
|
||||
|
||||
private boolean _reconnection;
|
||||
private boolean skipReconnect;
|
||||
|
||||
Reference in New Issue
Block a user