Changes between Initial Version and Version 1 of Ticket #18534


Ignore:
Timestamp:
2020-01-08T01:02:01+01:00 (6 years ago)
Author:
taylor.smock
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18534 – Description

    initial v1  
    11This ''may'' be Mac OS X only.
    22
    3 The issue appears to be on ImageProvider.java#858 -- cache remains locked by another thread indefinitely.
     3The issue appears to be on source:trunk/src/org/openstreetmap/josm/tools/ImageProvider.java#L858 -- cache remains locked by another thread indefinitely.
    44
    55Is 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.