Code Quality Improvement - Constructors should only call non-overridable methods

update
This commit is contained in:
Christian Ivan
2015-12-02 17:13:28 +07:00
parent 86898db7b1
commit fff5cb3e25

View File

@@ -180,7 +180,7 @@ public class Manager extends Emitter {
return this;
}
public long reconnectionDelay() {
public final long reconnectionDelay() {
return this._reconnectionDelay;
}
@@ -192,7 +192,7 @@ public class Manager extends Emitter {
return this;
}
public double randomizationFactor() {
public final double randomizationFactor() {
return this._randomizationFactor;
}
@@ -204,7 +204,7 @@ public class Manager extends Emitter {
return this;
}
public long reconnectionDelayMax() {
public final long reconnectionDelayMax() {
return this._reconnectionDelayMax;
}