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
|
||||
* 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 */
|
||||
|
|
Loading…
Reference in New Issue