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/24 08:24:16 UTC

lucene-solr:branch_6x: Two nested classes made private that should never have been public.

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 5d1b3baec -> 65d58e649


Two nested classes made private that should never have been public.


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

Branch: refs/heads/branch_6x
Commit: 65d58e6494fb109050e0006e0ac822bcb07641d3
Parents: 5d1b3ba
Author: Karl Wright <Da...@gmail.com>
Authored: Sun Apr 24 02:23:05 2016 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Sun Apr 24 02:24:08 2016 -0400

----------------------------------------------------------------------
 .../java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/65d58e64/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java
index 312b79e..b24d5af 100755
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/GeoStandardPath.java
@@ -336,7 +336,7 @@ class GeoStandardPath extends GeoBasePath {
    *    we generate no circle at all.  If there is one intersection only, then we generate a plane that includes that intersection, as well as the remaining
    *    cutoff plane/edge plane points.
    */
-  public static class SegmentEndpoint {
+  private static class SegmentEndpoint {
     /** The center point of the endpoint */
     public final GeoPoint point;
     /** A plane describing the circle */
@@ -580,7 +580,7 @@ class GeoStandardPath extends GeoBasePath {
   /**
    * This is the pre-calculated data for a path segment.
    */
-  public static class PathSegment {
+  private static class PathSegment {
     /** Starting point of the segment */
     public final GeoPoint start;
     /** End point of the segment */