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

This commit is contained in:
Karl Wright 2016-04-24 02:23:05 -04:00
parent 5d1b3baecd
commit 65d58e6494
1 changed files with 2 additions and 2 deletions

View File

@ -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 */