42376c052a
Motivation: PlatformDependent.newConcurrentHashMap() is no longer needed so it could be easily removed and new ConcurrentHashMap<>() inlined instead of invoking PlatformDependent.newConcurrentHashMap(). Modification: Use ConcurrentHashMap provided by the JDK directly. Result: Less code to maintain.