Fixed checkstyle errors: hidden fields, missing javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1054289 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
411de7c005
commit
c369824de7
|
@ -271,15 +271,21 @@ public class ExponentialDistributionImpl extends AbstractContinuousDistribution
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected double calculateNumericalVariance() {
|
protected double calculateNumericalVariance() {
|
||||||
final double mean = getMean();
|
final double m = getMean();
|
||||||
return mean * mean;
|
return m * m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean isSupportLowerBoundInclusive() {
|
public boolean isSupportLowerBoundInclusive() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean isSupportUpperBoundInclusive() {
|
public boolean isSupportUpperBoundInclusive() {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue