mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove null check from _tabsTracker.Dispose() call
The null-conditional operator was removed from _tabsTracker.Dispose() in the Dispose() method, assuming _tabsTracker is always non-null when Dispose() is called.
This commit is contained in:
parent
42a91fb3a0
commit
9fadec36c7
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContex
|
|||
|
||||
public void Dispose()
|
||||
{
|
||||
_tabsTracker?.Dispose();
|
||||
_tabsTracker.Dispose();
|
||||
DisposeFileWatchers();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue