Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 58569 invoked from network); 24 Apr 2008 12:30:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Apr 2008 12:30:08 -0000 Received: (qmail 92810 invoked by uid 500); 24 Apr 2008 12:30:07 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 92761 invoked by uid 500); 24 Apr 2008 12:30:07 -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 92750 invoked by uid 99); 24 Apr 2008 12:30:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2008 05:30:07 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2008 12:29:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C3D6A1A9832; Thu, 24 Apr 2008 05:29:45 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r651244 - in /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear: BigMatrixImpl.java RealMatrixImpl.java Date: Thu, 24 Apr 2008 12:29:44 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080424122945.C3D6A1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Thu Apr 24 05:29:41 2008 New Revision: 651244 URL: http://svn.apache.org/viewvc?rev=651244&view=rev Log: changed the field TOO_SMALL from protected to private static Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/BigMatrixImpl.java commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/RealMatrixImpl.java Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/BigMatrixImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/BigMatrixImpl.java?rev=651244&r1=651243&r2=651244&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/BigMatrixImpl.java (original) +++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/BigMatrixImpl.java Thu Apr 24 05:29:41 2008 @@ -73,7 +73,7 @@ private int scale = 64; /** Bound to determine effective singularity in LU decomposition */ - protected static BigDecimal TOO_SMALL = new BigDecimal(10E-12); + private static final BigDecimal TOO_SMALL = new BigDecimal(10E-12); /** BigDecimal 0 */ static final BigDecimal ZERO = new BigDecimal(0); Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/RealMatrixImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/RealMatrixImpl.java?rev=651244&r1=651243&r2=651244&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/RealMatrixImpl.java (original) +++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/RealMatrixImpl.java Thu Apr 24 05:29:41 2008 @@ -69,7 +69,7 @@ private int parity = 1; /** Bound to determine effective singularity in LU decomposition */ - protected static double TOO_SMALL = 10E-12; + private static final double TOO_SMALL = 10E-12; /** * Creates a matrix with no data