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
Simplify lazy initialization by removing Volatile.Read (#117868)
Replaced `Volatile.Read` with plain field reads. The memory barriers provided by `CompareExchange` are
sufficient to ensure thread safety and visibility, making `Volatile.Read`
unnecessary.
Follow-up to #117817
Related: #100969
cc: @stephentoub
Co-authored-by: Tanner Gooding <[email protected]>
0 commit comments