Changes between Initial Version and Version 1 of Ticket #18534
- Timestamp:
- 2020-01-08T01:02:01+01:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18534 – Description
initial v1 1 1 This ''may'' be Mac OS X only. 2 2 3 The issue appears to be on ImageProvider.java#858 -- cache remains locked by another thread indefinitely. 3 The issue appears to be on source:trunk/src/org/openstreetmap/josm/tools/ImageProvider.java#L858 -- cache remains locked by another thread indefinitely. 4 4 5 5 Is there a reason why we aren't using `java.util.concurrent.ConcurrentHashMap` instead of `java.util.HashMap`? Or an actual lock object? I know I've gotten warnings from some lint tools about using `synchronized (map)` in the past.