From 9dc30fddc109504fc80fb62e33554d54cca47faf Mon Sep 17 00:00:00 2001
From: Thomas Neidhart <tn@apache.org>
Date: Fri, 31 Jan 2014 22:07:35 +0000
Subject: [PATCH] Make constructor package private for now to simplify
 potential future changes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1563288 13f79535-47bb-0310-9956-ffa450edef68
---
 .../math3/geometry/euclidean/twod/hull/ConvexHull2D.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java b/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java
index f2c1ed35b..39a6fc3c8 100644
--- a/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java
+++ b/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/ConvexHull2D.java
@@ -50,7 +50,7 @@ public class ConvexHull2D implements ConvexHull<Euclidean2D, Vector2D>, Serializ
      * @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