Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EA3B49E0A for ; Fri, 2 Mar 2012 18:31:01 +0000 (UTC) Received: (qmail 29077 invoked by uid 500); 2 Mar 2012 18:31:01 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 29029 invoked by uid 500); 2 Mar 2012 18:31:01 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 29022 invoked by uid 99); 2 Mar 2012 18:31:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Mar 2012 18:31:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Mar 2012 18:31:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7F812238899C for ; Fri, 2 Mar 2012 18:30:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1296366 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java Date: Fri, 02 Mar 2012 18:30:40 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120302183040.7F812238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Fri Mar 2 18:30:40 2012 New Revision: 1296366 URL: http://svn.apache.org/viewvc?rev=1296366&view=rev Log: Missing @Override Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java?rev=1296366&r1=1296365&r2=1296366&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/correlation/StorelessCovariance.java Fri Mar 2 18:30:40 2012 @@ -167,6 +167,7 @@ public class StorelessCovariance extends * @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 * {@link MathUnsupportedOperationException} * @throws MathUnsupportedOperationException in all cases */ + @Override public int getN() throws MathUnsupportedOperationException { throw new MathUnsupportedOperationException();