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 F2EA1D801 for ; Fri, 21 Sep 2012 01:50:36 +0000 (UTC) Received: (qmail 6885 invoked by uid 500); 21 Sep 2012 01:50:36 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 6824 invoked by uid 500); 21 Sep 2012 01:50:36 -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 6814 invoked by uid 99); 21 Sep 2012 01:50:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2012 01:50:36 +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, 21 Sep 2012 01:50:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1159B23888FE for ; Fri, 21 Sep 2012 01:49:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1388294 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear: BlockRealMatrix.java OpenMapRealMatrix.java Date: Fri, 21 Sep 2012 01:49:51 -0000 To: commits@commons.apache.org From: celestin@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120921014952.1159B23888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: celestin Date: Fri Sep 21 01:49:51 2012 New Revision: 1388294 URL: http://svn.apache.org/viewvc?rev=1388294&view=rev Log: Removed some @Override tags, which have become illegal following some changes in r1388154. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/BlockRealMatrix.java commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/BlockRealMatrix.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/BlockRealMatrix.java?rev=1388294&r1=1388293&r2=1388294&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/BlockRealMatrix.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/BlockRealMatrix.java Fri Sep 21 01:49:51 2012 @@ -266,7 +266,6 @@ public class BlockRealMatrix extends Abs } /** {@inheritDoc} */ - @Override public BlockRealMatrix createMatrix(final int rowDimension, final int columnDimension) { return new BlockRealMatrix(rowDimension, columnDimension); } @@ -1128,7 +1127,6 @@ public class BlockRealMatrix extends Abs } /** {@inheritDoc} */ - @Override public double getEntry(final int row, final int column) { MatrixUtils.checkMatrixIndex(this, row, column); final int iBlock = row / BLOCK_SIZE; @@ -1139,7 +1137,6 @@ public class BlockRealMatrix extends Abs } /** {@inheritDoc} */ - @Override public void setEntry(final int row, final int column, final double value) { MatrixUtils.checkMatrixIndex(this, row, column); final int iBlock = row / BLOCK_SIZE; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java?rev=1388294&r1=1388293&r2=1388294&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java Fri Sep 21 01:49:51 2012 @@ -75,7 +75,6 @@ public class OpenMapRealMatrix extends A } /** {@inheritDoc} */ - @Override public OpenMapRealMatrix createMatrix(int rowDimension, int columnDimension) { return new OpenMapRealMatrix(rowDimension, columnDimension); } @@ -211,7 +210,6 @@ public class OpenMapRealMatrix extends A } /** {@inheritDoc} */ - @Override public double getEntry(int row, int column) { MatrixUtils.checkRowIndex(this, row); MatrixUtils.checkColumnIndex(this, column); @@ -225,7 +223,6 @@ public class OpenMapRealMatrix extends A } /** {@inheritDoc} */ - @Override public void setEntry(int row, int column, double value) { MatrixUtils.checkRowIndex(this, row); MatrixUtils.checkColumnIndex(this, column);