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 C643C105EC for ; Wed, 22 Jan 2014 12:39:33 +0000 (UTC) Received: (qmail 38142 invoked by uid 500); 22 Jan 2014 12:39:29 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 37866 invoked by uid 500); 22 Jan 2014 12:39:28 -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 37853 invoked by uid 99); 22 Jan 2014 12:39:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jan 2014 12:39:27 +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; Wed, 22 Jan 2014 12:39:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D2B8E23888E2; Wed, 22 Jan 2014 12:39:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1560335 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java Date: Wed, 22 Jan 2014 12:39:06 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140122123906.D2B8E23888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Wed Jan 22 12:39:06 2014 New Revision: 1560335 URL: http://svn.apache.org/r1560335 Log: typo in a function name ... Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java commons/proper/math/trunk/src/test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java?rev=1560335&r1=1560334&r2=1560335&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/partitioning/BoundaryProjection.java Wed Jan 22 12:39:06 2014 @@ -53,7 +53,7 @@ public class BoundaryProjection get0riginal() { + public Point getOriginal() { return original; } Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java?rev=1560335&r1=1560334&r2=1560335&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java (original) +++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/geometry/euclidean/twod/PolygonsSetTest.java Wed Jan 22 12:39:06 2014 @@ -178,7 +178,7 @@ public class PolygonsSetTest { for (double x = -0.999; x < 3.999; x += 0.11) { Vector2D v = new Vector2D(x, x + 0.5); BoundaryProjection projection = set.projectToBoundary(v); - Assert.assertTrue(projection.get0riginal() == v); + Assert.assertTrue(projection.getOriginal() == v); Vector2D p = (Vector2D) projection.getProjected(); if (x < -0.5) { Assert.assertEquals(0.0, p.getX(), 1.0e-10);