remove empty string init

This commit is contained in:
Jeremy Wu 2020-11-09 08:24:52 +11:00
parent b962e4dcb1
commit 51ea7abd6b

View file

@ -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 = ';';