Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
MethodUtils.CACHE_METHODS is not accessed in a thread-safe way.
The field is a mutable static field, but is not volatile (nor Atomic) and only write accesses are synchronised.
If one thread writes the field, other reader threads may not see the updates immediately (or ever).