diff --git a/osu.Game/Beatmaps/BeatmapManager.cs b/osu.Game/Beatmaps/BeatmapManager.cs
index 36dcd4f8e8..15dc0c9b61 100644
--- a/osu.Game/Beatmaps/BeatmapManager.cs
+++ b/osu.Game/Beatmaps/BeatmapManager.cs
@@ -113,16 +113,6 @@ namespace osu.Game.Beatmaps
return imported.PerformRead(s => GetWorkingBeatmap(s.Beatmaps.First()));
}
- ///
- /// Fired when a single difficulty has been hidden.
- ///
- public event Action? BeatmapHidden;
-
- ///
- /// Fired when a single difficulty has been restored.
- ///
- public event Action? BeatmapRestored;
-
///
/// Delete a beatmap difficulty.
///
@@ -134,8 +124,6 @@ namespace osu.Game.Beatmaps
{
beatmapInfo.Hidden = true;
transaction.Commit();
-
- BeatmapHidden?.Invoke(beatmapInfo);
}
}
@@ -150,8 +138,6 @@ namespace osu.Game.Beatmaps
{
beatmapInfo.Hidden = false;
transaction.Commit();
-
- BeatmapRestored?.Invoke(beatmapInfo);
}
}