parent
38e337f5c8
commit
75efbfd6b2
|
@ -114,6 +114,14 @@ public class SynchronizedDescriptiveStatistics extends DescriptiveStatistics {
|
||||||
return super.getStandardDeviation();
|
return super.getStandardDeviation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized double getQuadraticMean() {
|
||||||
|
return super.getQuadraticMean();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -111,6 +111,14 @@ public class SynchronizedSummaryStatistics extends SummaryStatistics {
|
||||||
return super.getStandardDeviation();
|
return super.getStandardDeviation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized double getQuadraticMean() {
|
||||||
|
return super.getQuadraticMean();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue