On Wed, 15 Jun 2022 19:49:52 GMT, Andrey Turbanov wrote:
> If a thread-safe implementation is not needed, it is recommended to use
> HashMap in place of Hashtable.
> `ConditionalSpecialCasing.entryTable` is read-only Map which is modified only
> in `static` block. It means we can safely replace
On Wed, 15 Jun 2022 19:49:52 GMT, Andrey Turbanov wrote:
> If a thread-safe implementation is not needed, it is recommended to use
> HashMap in place of Hashtable.
> `ConditionalSpecialCasing.entryTable` is read-only Map which is modified only
> in `static` block. It means we can safely replace
If a thread-safe implementation is not needed, it is recommended to use HashMap
in place of Hashtable.
`ConditionalSpecialCasing.entryTable` is read-only Map which is modified only
in `static` block. It means we can safely replace it with HashMap.
-
Commit messages:
- [PATCH] Unnec