-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
LazyThreadSafetyMode.NONE literally means that accessing the lazy value from multiple threads can cause an NPE. Unfortunately, we assumed NONE would be implemented such that a lazy value could be initialized by multiple threads without throwing an NPE, with race conditions only possibly occurring inside the initializer block. However, that is actually the behavior is for LazyThreadSafeteyMode.PUBLICATION. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. (cherry picked from commit eef183c)
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters