1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 20:32:55 +08:00

Remove redundant string formatting

This commit is contained in:
Naxess 2021-04-26 16:17:38 +02:00
parent 7b9ed924be
commit 9b9c473616

View File

@ -65,7 +65,7 @@ namespace osu.Game.Rulesets.Edit.Checks
public abstract class IssueTemplateUnsnap : IssueTemplate
{
protected IssueTemplateUnsnap(ICheck check, IssueType type)
: base(check, type, "{0:0.##} is unsnapped by {1:0.##} ms.")
: base(check, type, "{0} is unsnapped by {1:0.##} ms.")
{
}