1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:02:55 +08:00

Remove unnecessary access modifier in interface

Co-authored-by: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
Dean Herbert 2021-10-06 05:52:28 +09:00 committed by GitHub
parent a5aa32811a
commit 4d5696959b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ namespace osu.Game.Rulesets
/// </summary>
string InstantiationInfo { get; }
public Ruleset? CreateInstance()
Ruleset? CreateInstance()
{
var type = Type.GetType(InstantiationInfo);