You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2016/04/12 12:09:11 UTC

[2/3] lucene-solr:branch_6x: LUCENE-7203: Fix the javadoc broken in the previous commit.

LUCENE-7203: Fix the javadoc broken in the previous commit.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/520c31f8
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/520c31f8
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/520c31f8

Branch: refs/heads/branch_6x
Commit: 520c31f8ed4ed45bc4fc150903cfc7510983779f
Parents: e4b2692
Author: Karl Wright <Da...@gmail.com>
Authored: Tue Apr 12 06:05:22 2016 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Tue Apr 12 06:07:45 2016 -0400

----------------------------------------------------------------------
 .../java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java  | 3 ++-
 .../java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/520c31f8/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java
index 518df33..995e191 100644
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConcavePolygon.java
@@ -318,7 +318,8 @@ class GeoConcavePolygon extends GeoBasePolygon {
     protected final SidedPlane sideBound2;
     
     /** Constructor.
-      * @param exception is the one plane to exclude from the check.
+      * @param sideBound1 is the first side bound.
+      * @param sideBound2 is the second side bound.
       */
     public EitherBound(final SidedPlane sideBound1, final SidedPlane sideBound2) {
       this.sideBound1 = sideBound1;

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/520c31f8/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java
index 4cc8177..dd5971f 100755
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoConvexPolygon.java
@@ -304,7 +304,8 @@ class GeoConvexPolygon extends GeoBasePolygon {
     protected final SidedPlane sideBound2;
     
     /** Constructor.
-      * @param exception is the one plane to exclude from the check.
+      * @param sideBound1 is the first side bound.
+      * @param sideBound2 is the second side bound.
       */
     public EitherBound(final SidedPlane sideBound1, final SidedPlane sideBound2) {
       this.sideBound1 = sideBound1;