You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2014/01/31 23:07:35 UTC

svn commit: r1563288 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java

Author: tn
Date: Fri Jan 31 22:07:35 2014
New Revision: 1563288

URL: http://svn.apache.org/r1563288
Log:
Make constructor package private for now to simplify potential future changes.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java?rev=1563288&r1=1563287&r2=1563288&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java Fri Jan 31 22:07:35 2014
@@ -50,7 +50,7 @@ public class ConvexHull2D implements Con
      * @param vertices the vertices of the convex hull
      * @param tolerance tolerance below which points are considered identical
      */
-    public ConvexHull2D(final Collection<Vector2D> vertices, final double tolerance) {
+    ConvexHull2D(final Collection<Vector2D> vertices, final double tolerance) {
         this.vertices = vertices.toArray(new Vector2D[vertices.size()]);
 
         // construct the line segments - handle special cases of 1 or 2 points