1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 10:42:55 +08:00

Move DatabaseWorkingBeatmap out of partial class

This commit is contained in:
Drew DeVault 2017-03-22 06:50:48 -04:00
parent 2b1d31e69c
commit 2e1f596b2a
2 changed files with 57 additions and 60 deletions

View File

@ -18,7 +18,7 @@ using SQLiteNetExtensions.Extensions;
namespace osu.Game.Database
{
public partial class BeatmapDatabase
public class BeatmapDatabase
{
private SQLiteConnection connection { get; }
private Storage storage;

View File

@ -10,9 +10,7 @@ using osu.Game.Beatmaps.IO;
namespace osu.Game.Database
{
public partial class BeatmapDatabase
{
private class DatabaseWorkingBeatmap : WorkingBeatmap
internal class DatabaseWorkingBeatmap : WorkingBeatmap
{
private readonly BeatmapDatabase database;
@ -81,4 +79,3 @@ namespace osu.Game.Database
}
}
}
}