Skip to content

Commit ef886e4

Browse files
committed
minor var rename
1 parent efc16cb commit ef886e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/app/src/main/java/org/locationtech/jtstest/function/OverlayNGRobustFunctions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static Geometry symDifference(Geometry a, Geometry b) {
5353
}
5454

5555
public static Geometry unaryUnion(Geometry a) {
56-
UnionStrategy unionSRFun = new UnionStrategy() {
56+
UnionStrategy unionFun = new UnionStrategy() {
5757

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

6767
};
6868
UnaryUnionOp op = new UnaryUnionOp(a);
69-
op.setUnionFunction(unionSRFun);
69+
op.setUnionFunction(unionFun);
7070
return op.union();
7171
}
7272

0 commit comments

Comments
 (0)