1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 06:27:18 +08:00

Remove unused method for now

This commit is contained in:
Dean Herbert 2021-10-18 14:32:38 +09:00
parent 3c4c9ab7a7
commit 75bfa705cf

View File

@ -546,12 +546,5 @@ namespace osu.Game.Stores
}
public virtual string HumanisedModelName => $"{typeof(TModel).Name.Replace(@"Info", "").ToLower()}";
private string getValidFilename(string filename)
{
foreach (char c in Path.GetInvalidFileNameChars())
filename = filename.Replace(c, '_');
return filename;
}
}
}