Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid memory leak for thread-local values
Setting the thread-local value to `null` is not the same as removing it. The former retains an entry mapping the current thread's value to `null` in a hidden global map. The latter removes the current thread's entry entirely.
- Loading branch information