Remove redundant string formatting

This commit is contained in:
Naxess 2021-04-26 16:17:38 +02:00
parent 7b9ed924be
commit 9b9c473616
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ private IEnumerable<Issue> getUnsnapIssues(HitObject hitobject, double unsnap, d
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.")
{
}