Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trace thread local performance refactor #9620

Closed
Prev Previous commit
Next Next commit
Remove expression body syntax
saintentropy committed Apr 3, 2019

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit fac80f2e047982bfc54e10e775acb245adc35fa6
10 changes: 8 additions & 2 deletions src/NodeServices/TraceSupport.cs
Original file line number Diff line number Diff line change
@@ -29,8 +29,14 @@ public static class TraceUtils

internal static Dictionary<String, ISerializable> LocalStorageSlot
{
get => _localStorageSlot ?? (_localStorageSlot = new Dictionary<string, ISerializable>());
set => _localStorageSlot = value;
get
{
return _localStorageSlot ?? (_localStorageSlot = new Dictionary<string, ISerializable>());
}
set
{
_localStorageSlot = value;
}
}

/// <summary>