Fix broken tests

Don't fail if the tab changes and there's no listeners for the new utility
This commit is contained in:
Benjamin Popp 2021-04-14 20:35:05 -05:00
parent 9ae317087d
commit 2cf2dc4ce0

View File

@ -36,8 +36,6 @@ namespace HavenSoft.HexManiac.Core.ViewModels.QuickEditItems {
return ErrorInfo.NoError;
}
public void TabChanged() {
CanRunChanged(this, EventArgs.Empty);
}
public void TabChanged() => CanRunChanged?.Invoke(this, EventArgs.Empty);
}
}