mirror of https://github.com/apache/lucene.git
Two nested classes made private that should never have been public.
This commit is contained in:
parent
5d1b3baecd
commit
65d58e6494
|
@ -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
|
* 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.
|
* cutoff plane/edge plane points.
|
||||||
*/
|
*/
|
||||||
public static class SegmentEndpoint {
|
private static class SegmentEndpoint {
|
||||||
/** The center point of the endpoint */
|
/** The center point of the endpoint */
|
||||||
public final GeoPoint point;
|
public final GeoPoint point;
|
||||||
/** A plane describing the circle */
|
/** A plane describing the circle */
|
||||||
|
@ -580,7 +580,7 @@ class GeoStandardPath extends GeoBasePath {
|
||||||
/**
|
/**
|
||||||
* This is the pre-calculated data for a path segment.
|
* This is the pre-calculated data for a path segment.
|
||||||
*/
|
*/
|
||||||
public static class PathSegment {
|
private static class PathSegment {
|
||||||
/** Starting point of the segment */
|
/** Starting point of the segment */
|
||||||
public final GeoPoint start;
|
public final GeoPoint start;
|
||||||
/** End point of the segment */
|
/** End point of the segment */
|
||||||
|
|
Loading…
Reference in New Issue