Skip to content

Commit

Permalink
Use default node capacity for STRtree
Browse files Browse the repository at this point in the history
  • Loading branch information
domi-b committed Dec 20, 2023
1 parent af843e9 commit f5e7d6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private static boolean hasEqualLinePart(List<CompoundCurve> lines) {
return false;
}

STRtree tree = new STRtree(lines.size());
STRtree tree = new STRtree();
for (CompoundCurve line : lines) {
tree.insert(line.getEnvelopeInternal(), line);
}
Expand Down

0 comments on commit f5e7d6d

Please sign in to comment.