You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2018. It is now read-only.
WeakDataFile maintains a static reference list of current instances of the class (the refList member variable). This is a shared static List, but the implementation used (ArrayList) is not safe for concurrent usage. concurrent modification of an ArrayList can cause all sorts of chaos in this class, possibly leading to leaked references, lost references, or random exceptions during usage.