From commits-return-72271-archive-asf-public=cust-asf.ponee.io@commons.apache.org Tue Feb 18 07:18:58 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4482B180675 for ; Tue, 18 Feb 2020 08:18:58 +0100 (CET) Received: (qmail 94235 invoked by uid 500); 18 Feb 2020 07:18:57 -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 94096 invoked by uid 99); 18 Feb 2020 07:18:56 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Feb 2020 07:18:56 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1EE508DACC; Tue, 18 Feb 2020 07:18:55 +0000 (UTC) Date: Tue, 18 Feb 2020 07:18:56 +0000 To: "commits@commons.apache.org" Subject: [commons-geometry] 01/03: Add missing import MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: aherbert@apache.org In-Reply-To: <158201033571.3954.7255394411951986280@gitbox.apache.org> References: <158201033571.3954.7255394411951986280@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: commons-geometry X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: 76166d1d4447322f25a1c180a2597e36938af61e X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200218071856.1EE508DACC@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git commit 76166d1d4447322f25a1c180a2597e36938af61e Author: Alex Herbert AuthorDate: Tue Feb 18 06:55:27 2020 +0000 Add missing import --- .../apache/commons/geometry/euclidean/threed/shapes/Parallelepiped.java | 1 + 1 file changed, 1 insertion(+) diff --git a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/shapes/Parallelepiped.java b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/shapes/Parallelepiped.java index ccf1ba5..e2355fa 100644 --- a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/shapes/Parallelepiped.java +++ b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/shapes/Parallelepiped.java @@ -20,6 +20,7 @@ import java.util.Arrays; import java.util.List; import org.apache.commons.geometry.core.precision.DoublePrecisionContext; +import org.apache.commons.geometry.euclidean.threed.Facet; import org.apache.commons.geometry.euclidean.threed.Vector3D; /** Class containing utility methods for constructing parallelepipeds. Parallelepipeds