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