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

View File

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