diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs index a2538893b..e07e30cb2 100644 --- a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs +++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsViewModel.cs @@ -1,21 +1,12 @@ -using Flow.Launcher.Infrastructure.Storage; - -namespace Flow.Launcher.Plugin.WebSearch +namespace Flow.Launcher.Plugin.WebSearch { public class SettingsViewModel { - private readonly PluginJsonStorage _storage; - public SettingsViewModel(Settings settings) { Settings = settings; } public Settings Settings { get; } - - public void Save() - { - _storage.Save(); - } } -} \ No newline at end of file +}