mirror of
https://github.com/apache/commons-math.git
synced 2025-02-07 18:49:40 +00:00
Changed wrapped Variance instance to private.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a94d386979
commit
4ecbafad32
@ -30,7 +30,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis
|
||||
* one of the threads invokes the <code>increment()</code> or
|
||||
* <code>clear()</code> method, it must be synchronized externally.
|
||||
*
|
||||
* @version $Revision: 1.21 $ $Date: 2004/07/10 17:09:08 $
|
||||
* @version $Revision: 1.22 $ $Date: 2004/07/18 04:42:02 $
|
||||
*/
|
||||
public class StandardDeviation extends AbstractStorelessUnivariateStatistic
|
||||
implements Serializable {
|
||||
@ -39,7 +39,7 @@ public class StandardDeviation extends AbstractStorelessUnivariateStatistic
|
||||
static final long serialVersionUID = 5728716329662425188L;
|
||||
|
||||
/** Wrapped Variance instance */
|
||||
protected Variance variance = null;
|
||||
private Variance variance = null;
|
||||
|
||||
/**
|
||||
* Constructs a StandardDeviation
|
||||
|
Loading…
x
Reference in New Issue
Block a user