Skip to content

Commit

Permalink
minor var rename
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-jts committed Jan 10, 2025
1 parent efc16cb commit ef886e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static Geometry symDifference(Geometry a, Geometry b) {
}

public static Geometry unaryUnion(Geometry a) {
UnionStrategy unionSRFun = new UnionStrategy() {
UnionStrategy unionFun = new UnionStrategy() {

public Geometry union(Geometry g0, Geometry g1) {
return overlay(g0, g1, UNION );
Expand All @@ -66,7 +66,7 @@ public boolean isFloatingPrecision() {

};
UnaryUnionOp op = new UnaryUnionOp(a);
op.setUnionFunction(unionSRFun);
op.setUnionFunction(unionFun);
return op.union();
}

Expand Down

0 comments on commit ef886e4

Please sign in to comment.