1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Remove public keywords from interface implementations

This commit is contained in:
Dean Herbert 2021-04-24 02:13:29 +09:00
parent 6dd48f204c
commit b9ee63ff89
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,6 @@ namespace osu.Game.Database
{
[JsonIgnore]
[PrimaryKey]
public Guid ID { get; set; }
Guid ID { get; set; }
}
}

View File

@ -10,7 +10,7 @@ namespace osu.Game.Database
/// <summary>
/// The main realm context, bound to the update thread.
/// </summary>
public Realm Context { get; }
Realm Context { get; }
/// <summary>
/// Get a fresh context for read usage.