Merge pull request #258 from DevFactory/release/redundant-field-initializer-fix-1

Code Quality Improvement - Redundant Field Initializer
This commit is contained in:
Naoyuki Kanezawa
2015-12-18 11:49:36 +09:00
2 changed files with 3 additions and 3 deletions

View File

@@ -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() {}

View File

@@ -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;