From 8314e2dac09eebbb2a3a92bf15f27fe27d06ce6f Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 1 Nov 2022 19:34:04 +0100 Subject: [PATCH] Suppressed wrong null warning --- I18N Commander/UI WinForms/Components/SectionTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I18N Commander/UI WinForms/Components/SectionTree.cs b/I18N Commander/UI WinForms/Components/SectionTree.cs index 878fe74..33252b7 100644 --- a/I18N Commander/UI WinForms/Components/SectionTree.cs +++ b/I18N Commander/UI WinForms/Components/SectionTree.cs @@ -10,7 +10,7 @@ namespace UI_WinForms.Components; public partial class SectionTree : UserControl { private static readonly Dictionary?> NODE_PROGRESS_HANDLERS = new(); - private readonly Timer generatorTimer; + private readonly Timer generatorTimer = null!; public SectionTree() {