You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2019/05/20 13:39:25 UTC

[commons-geometry] 12/16: GEOMETRY-29 adds javadoc comment.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git

commit b14d63c553cf827e1783ed889fa5414072adf850
Author: Sven Rathgeber <sv...@dfs.de>
AuthorDate: Wed Apr 3 21:53:27 2019 +0200

    GEOMETRY-29 adds javadoc comment.
---
 .../main/java/org/apache/commons/geometry/euclidean/threed/Line.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Line.java b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Line.java
index bd3c189..af1740b 100644
--- a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Line.java
+++ b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Line.java
@@ -239,11 +239,13 @@ public class Line implements Embedding<Vector3D, Vector1D> {
         return new SubLine(this, new IntervalsSet(precision));
     }
     
+    /** {@inheritDoc} */
     @Override
     public int hashCode() {
         return Objects.hash(direction, precision, zero);
     }
 
+    /** {@inheritDoc} */
     @Override
     public boolean equals(Object obj) {
         if (this == obj)