Changeset 14759 in josm
- Timestamp:
- 2019-02-02T21:01:16+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/Marker.java
r14747 r14759 12 12 import java.util.ArrayList; 13 13 import java.util.Collection; 14 import java.util.HashMap;15 14 import java.util.LinkedList; 16 15 import java.util.List; 17 16 import java.util.Map; 17 import java.util.concurrent.ConcurrentHashMap; 18 18 19 19 import javax.swing.ImageIcon; … … 79 79 // will make gui for it so I'm keeping it here 80 80 81 private static final Map<String, TemplateEntryProperty> CACHE = new HashMap<>();81 private static final Map<String, TemplateEntryProperty> CACHE = new ConcurrentHashMap<>(); 82 82 83 83 public static TemplateEntryProperty forMarker(String layerName) {
Note:
See TracChangeset
for help on using the changeset viewer.