From 668f68dd63ddd270c8ab8e6acfe4b19dc70c4e22 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 18 Oct 2017 18:27:57 +0900 Subject: [PATCH] Remove some unnecessary update calls --- osu.Game/Beatmaps/BeatmapStore.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/osu.Game/Beatmaps/BeatmapStore.cs b/osu.Game/Beatmaps/BeatmapStore.cs index 4892d4f3db..21a0b3ef6c 100644 --- a/osu.Game/Beatmaps/BeatmapStore.cs +++ b/osu.Game/Beatmaps/BeatmapStore.cs @@ -66,7 +66,6 @@ namespace osu.Game.Beatmaps if (beatmapSet.DeletePending) return false; beatmapSet.DeletePending = true; - context.BeatmapSetInfo.Update(beatmapSet); context.SaveChanges(); BeatmapSetRemoved?.Invoke(beatmapSet); @@ -85,7 +84,6 @@ namespace osu.Game.Beatmaps if (!beatmapSet.DeletePending) return false; beatmapSet.DeletePending = false; - context.BeatmapSetInfo.Update(beatmapSet); context.SaveChanges(); BeatmapSetAdded?.Invoke(beatmapSet); @@ -104,7 +102,6 @@ namespace osu.Game.Beatmaps if (beatmap.Hidden) return false; beatmap.Hidden = true; - context.BeatmapInfo.Update(beatmap); context.SaveChanges(); BeatmapHidden?.Invoke(beatmap); @@ -123,7 +120,6 @@ namespace osu.Game.Beatmaps if (!beatmap.Hidden) return false; beatmap.Hidden = false; - context.BeatmapInfo.Update(beatmap); context.SaveChanges(); BeatmapRestored?.Invoke(beatmap);