OpenTripPlanner/application/src/main/java/org/opentripplanner/osm
Vincent Paturet e7009697cc Use optimal initial capacity for HashMap, HashSet, and ArrayList
Replace new HashMap<>(n) / new HashSet<>(n) with the Java 19+ factory
methods HashMap.newHashMap(n) / HashSet.newHashSet(n) which correctly
account for the 0.75 load factor. Also pre-size ArrayLists and HashMaps
where the element count is known at construction time.
2026-03-04 08:16:38 +01:00
..
issues Apply updated prettier formatting 2026-01-20 16:29:07 +02:00
model Use optimal initial capacity for HashMap, HashSet, and ArrayList 2026-03-04 08:16:38 +01:00
tagmapping Move Graph into street module 2026-02-18 07:55:23 +01:00
wayproperty Update constants to follow naming conventions 2026-02-09 16:37:46 +02:00
DefaultOsmProvider.java Apply updated prettier formatting 2026-01-20 16:29:07 +02:00
OsmOpeningHoursParser.java Fix all package names and imports 2026-02-16 10:58:51 +01:00
OsmParser.java Don't use trailing comments 2025-12-16 00:09:44 +02:00
OsmParserPhase.java refactor: Move all src files into the application module 2024-10-11 15:55:19 +02:00
OsmProvider.java Update docs 2025-01-29 08:09:44 +01:00