mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove spuriously added discard (_=) for void call
Intellisense for the non-win
This commit is contained in:
parent
3648126854
commit
b38ffef23c
2 changed files with 3 additions and 3 deletions
|
|
@ -114,5 +114,5 @@ namespace Flow.Launcher.Infrastructure.Storage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#pragma warning enable SYSLIB0011
|
#pragma warning restore SYSLIB0011
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -157,8 +157,8 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
||||||
#if !DEBUG
|
#if !DEBUG
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
_ = ProgramLogger.LogException($"|UWP|All|{p.InstalledLocation}|An unexpected error occured and " + $"unable to convert Package to UWP for {p.Id.FullName}", e);
|
ProgramLogger.LogException($"|UWP|All|{p.InstalledLocation}|An unexpected error occured and " + $"unable to convert Package to UWP for {p.Id.FullName}", e);
|
||||||
return new Application[] { };
|
return Array.Empty<Application>();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if DEBUG //make developer aware and implement handling
|
#if DEBUG //make developer aware and implement handling
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue