We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d16b30 commit abee9baCopy full SHA for abee9ba
Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/ActionKeywordModel.cs
@@ -1,13 +1,15 @@
1
using System.ComponentModel;
2
using System.Runtime.CompilerServices;
3
4
+#nullable enable
5
+
6
namespace Flow.Launcher.Plugin.Explorer.Views
7
{
8
public class ActionKeywordModel : INotifyPropertyChanged
9
- private static Settings _settings;
10
+ private static Settings _settings = null!;
11
- public event PropertyChangedEventHandler PropertyChanged;
12
+ public event PropertyChangedEventHandler? PropertyChanged;
13
14
public static void Init(Settings settings)
15
@@ -54,4 +56,4 @@ public bool Enabled
54
56
}
55
57
58
-}
59
+}
0 commit comments