Skip to content

Commit d0bf988

Browse files
committed
Fix mutable field.
1 parent 842afde commit d0bf988

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/Utilities/TimerQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace MySqlConnector.Utilities
66
{
77
internal sealed class TimerQueue
88
{
9-
public static TimerQueue Instance = new();
9+
public static TimerQueue Instance { get; } = new();
1010

1111
/// <summary>
1212
/// Adds a timer that will invoke <paramref name="action"/> in approximately <paramref name="delay"/> milliseconds.

0 commit comments

Comments
 (0)