Remove DatabaseBackedStore Reset functions

This commit is contained in:
TocoToucan
2017-10-25 15:12:14 +03:00
parent 63fe569afa
commit 5107489cda
6 changed files with 0 additions and 43 deletions

View File

@ -6,7 +6,6 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.EntityFrameworkCore;
using osu.Game.Database;
namespace osu.Game.Rulesets
@ -119,10 +118,5 @@ namespace osu.Game.Rulesets
InstantiationInfo = ruleset.GetType().AssemblyQualifiedName,
ID = ruleset.LegacyID
};
public override void Reset()
{
GetContext().Database.ExecuteSqlCommand("DELETE FROM RulesetInfo");
}
}
}