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:
Jack251970 2025-12-30 16:25:10 +08:00
parent 42a91fb3a0
commit 9fadec36c7

View file

@ -265,7 +265,7 @@ public class Main : ISettingProvider, IPlugin, IReloadable, IPluginI18n, IContex
public void Dispose()
{
_tabsTracker?.Dispose();
_tabsTracker.Dispose();
DisposeFileWatchers();
}