Skip to content

Commit

Permalink
fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jan 31, 2024
1 parent 4f584bc commit 34eea60
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ final class FacilityIndex {

NavigableMap<Id<ActivityFacility>, ActivityFacility> afs = all.getFacilitiesForActivityType(act);
for (ActivityFacility af : afs.values()) {
STRtree index = this.index.computeIfAbsent(act, k -> new STRtree());
index.insert(MGC.coord2Point(af.getCoord()).getEnvelopeInternal(), af);
STRtree idx = this.index.computeIfAbsent(act, k -> new STRtree());
idx.insert(MGC.coord2Point(af.getCoord()).getEnvelopeInternal(), af);
}
}

Expand Down

0 comments on commit 34eea60

Please sign in to comment.