1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 02:32:59 +08:00

Remove unused event

This commit is contained in:
Dean Herbert 2021-01-13 17:03:02 +09:00
parent 192e58e0c6
commit 78707c3b06

View File

@ -16,11 +16,6 @@ namespace osu.Game.Input
{
public class RealmKeyBindingStore : RealmBackedStore
{
/// <summary>
/// Fired whenever any key binding change occurs, across all rulesets and types.
/// </summary>
public event Action? KeyBindingChanged;
public RealmKeyBindingStore(RealmContextFactory realmFactory, Storage? storage = null)
: base(realmFactory, storage)
{
@ -88,8 +83,6 @@ namespace osu.Game.Input
realmBinding.PerformUpdate(modification);
}
KeyBindingChanged?.Invoke();
}
private void insertDefaults(IEnumerable<IKeyBinding> defaults, int? rulesetId = null, int? variant = null)