From 51ea7abd6b0791936b0274c787a66f26c87f33e6 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 9 Nov 2020 08:24:52 +1100 Subject: [PATCH] remove empty string init --- Plugins/Flow.Launcher.Plugin.Program/Settings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Settings.cs b/Plugins/Flow.Launcher.Plugin.Program/Settings.cs index beed46a7b..c1a269c1c 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Settings.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Settings.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; @@ -15,7 +15,7 @@ namespace Flow.Launcher.Plugin.Program public bool EnableRegistrySource { get; set; } = true; public string CustomizedExplorer { get; set; } = Explorer; - public string CustomizedArgs { get; set; } = ""; + public string CustomizedArgs { get; set; } internal const char SuffixSeperator = ';';