Skip to content

Commit d1defdb

Browse files
committed
chore: suppress IDE0036 messages
1 parent cceb852 commit d1defdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Docfx.Tests.Common/TestListenerScope.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Docfx.Tests.Common;
77

88
public class TestListenerScope : ILoggerListener, IDisposable
99
{
10-
private readonly static AsyncLocal<List<ILogItem>> s_items = new();
10+
private static readonly AsyncLocal<List<ILogItem>> s_items = new();
1111
private readonly LogLevel _logLevel;
1212

1313
public List<ILogItem> Items => s_items.Value;

0 commit comments

Comments
 (0)