Field might as well be private, as there's a public getter

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1296545 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-03 01:22:57 +00:00
parent 3cf4c1aa01
commit 9072f7e813
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class DescriptiveStatistics implements StatisticalSummary, Serializable {
/**
* Stored data values
*/
protected ResizableDoubleArray eDA = new ResizableDoubleArray();
private ResizableDoubleArray eDA = new ResizableDoubleArray();
/** Mean statistic implementation - can be reset by setter. */
private UnivariateStatistic meanImpl = new Mean();