1
0
mirror of https://github.com/apache/commons-math.git synced 2025-02-13 21:46:41 +00:00

Missing @Override

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1296366 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-02 18:30:40 +00:00
parent 42b95f45ba
commit e9c6edec9e

@ -167,6 +167,7 @@ public class StorelessCovariance extends Covariance {
* @throws NumberIsTooSmallException if the number of observations
* in a cell is < 2
*/
@Override
public RealMatrix getCovarianceMatrix() throws NumberIsTooSmallException {
return MatrixUtils.createRealMatrix(getData());
}
@ -197,6 +198,7 @@ public class StorelessCovariance extends Covariance {
* {@link MathUnsupportedOperationException}
* @throws MathUnsupportedOperationException in all cases
*/
@Override
public int getN()
throws MathUnsupportedOperationException {
throw new MathUnsupportedOperationException();