Skip to content

Commit

Permalink
Change classes to package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-jts committed Jan 19, 2024
1 parent ee319c4 commit 7515ff6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.locationtech.jts.noding.SegmentString;
import org.locationtech.jts.noding.SegmentStringUtil;

public class EdgeSegmentIntersector implements SegmentIntersector
class EdgeSegmentIntersector implements SegmentIntersector
{
private RobustLineIntersector li = new RobustLineIntersector();
private TopologyBuilder topoBuilder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.locationtech.jts.noding.SegmentIntersector;
import org.locationtech.jts.noding.SegmentString;

public class EdgeSegmentOverlapAction
class EdgeSegmentOverlapAction
extends MonotoneChainOverlapAction
{
private SegmentIntersector si = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.locationtech.jts.index.hprtree.HPRtree;
import org.locationtech.jts.noding.SegmentString;

public class EdgeSetIntersector {
class EdgeSetIntersector {

private HPRtree index = new HPRtree();
private Envelope envelope;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* @version 1.7
*/
public class EdgeSetMutualIntersector implements SegmentSetMutualIntersector
class EdgeSetMutualIntersector implements SegmentSetMutualIntersector
{
private HPRtree index = new HPRtree();
private Envelope envelope;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.LineString;

public class LinearBoundary {
class LinearBoundary {

//TODO: handle BoundaryNodeRule

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.locationtech.jts.noding.BasicSegmentString;
import org.locationtech.jts.noding.SegmentString;

public class RelateGeometry {
class RelateGeometry {

public static final boolean GEOM_A = true;
public static final boolean GEOM_B = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.locationtech.jts.geom.Position;
import org.locationtech.jts.util.Assert;

public class TopologyBuilder {
class TopologyBuilder {

private static final String MSG_GEOMETRY_DIMENSION_UNEXPECTED = "Unexpected combination of geometry dimensions";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
package org.locationtech.jts.operation.relateng;

public class TopologyPredicateValue {
class TopologyPredicateValue {

public static final int UNKNOWN = -1;
public static final int FALSE = 0;
Expand Down

0 comments on commit 7515ff6

Please sign in to comment.