Fix typo in copy() code

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@902934 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-01-25 19:09:17 +00:00
parent a15507466b
commit acdd9f2805
1 changed files with 1 additions and 1 deletions

View File

@ -154,6 +154,6 @@ public class FirstMoment extends AbstractStorelessUnivariateStatistic
dest.n = source.n;
dest.m1 = source.m1;
dest.dev = source.dev;
dest.nDev = dest.nDev;
dest.nDev = source.nDev;
}
}