Make private immutable fields final

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1065894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-02-01 02:15:57 +00:00
parent 622b2d0107
commit 80fea20c49
1 changed files with 3 additions and 3 deletions

View File

@ -186,13 +186,13 @@ public class OneWayAnovaImpl implements OneWayAnova {
private static class AnovaStats { private static class AnovaStats {
/** Degrees of freedom in numerator (between groups). */ /** Degrees of freedom in numerator (between groups). */
private int dfbg; private final int dfbg;
/** Degrees of freedom in denominator (within groups). */ /** Degrees of freedom in denominator (within groups). */
private int dfwg; private final int dfwg;
/** Statistic. */ /** Statistic. */
private double F; private final double F;
/** /**
* Constructor * Constructor