mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove variable and use returned dictionary directly
This commit is contained in:
parent
64de0ceef3
commit
cfdbd19d99
1 changed files with 1 additions and 2 deletions
|
|
@ -167,8 +167,7 @@ namespace Flow.Launcher.Plugin.Folder
|
|||
{
|
||||
_envStringPaths = new Dictionary<string, string>();
|
||||
|
||||
var specialPaths = System.Environment.GetEnvironmentVariables();
|
||||
foreach (DictionaryEntry special in specialPaths)
|
||||
foreach (DictionaryEntry special in Environment.GetEnvironmentVariables())
|
||||
{
|
||||
if (Directory.Exists(special.Value.ToString()))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue