Merge pull request #257 from DevFactory/release/constructors-should-only-call-non-overridable-methods-fix-1
Code Quality Improvement - Constructors should only call non-overridable methods
This commit is contained in:
@@ -180,7 +180,7 @@ public class Manager extends Emitter {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long reconnectionDelay() {
|
public final long reconnectionDelay() {
|
||||||
return this._reconnectionDelay;
|
return this._reconnectionDelay;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,7 +192,7 @@ public class Manager extends Emitter {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double randomizationFactor() {
|
public final double randomizationFactor() {
|
||||||
return this._randomizationFactor;
|
return this._randomizationFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -204,7 +204,7 @@ public class Manager extends Emitter {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long reconnectionDelayMax() {
|
public final long reconnectionDelayMax() {
|
||||||
return this._reconnectionDelayMax;
|
return this._reconnectionDelayMax;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user