Changeset 18028 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2021-07-15T09:33:54+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/Projections.java
r16152 r18028 14 14 import java.util.Map; 15 15 import java.util.Set; 16 import java.util.concurrent.ConcurrentHashMap; 16 17 import java.util.function.Supplier; 17 18 import java.util.regex.Matcher; … … 85 86 private static final Set<String> allCodes = new HashSet<>(); 86 87 private static final Map<String, Supplier<Projection>> projectionSuppliersByCode = new HashMap<>(); 87 private static final Map<String, Projection> projectionsByCodeCache = new HashMap<>(); 88 private static final Map<String, Projection> projectionsByCodeCache = new ConcurrentHashMap<>(); 88 89 89 90 /*********************************
Note:
See TracChangeset
for help on using the changeset viewer.