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

remove extra semi colons

This commit is contained in:
Nathan Alo 2021-03-26 15:34:45 +08:00
parent 374f8c5e22
commit 71a0616861
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ namespace osu.Game.Screens.Edit.Compose
return false;
default:
return false;
};
}
}
public void OnReleased(PlatformAction action)

View File

@ -39,7 +39,7 @@ namespace osu.Game.Screens.Edit.Compose
{
builder.Append($"{clock.CurrentTime.ToEditorFormattedString()}{separator}");
return builder.ToString();
};
}
builder.Append(editorBeatmap.SelectedHitObjects.First().StartTime.ToEditorFormattedString());
builder.Append($" ({string.Join(',', composer.ConvertSelectionToString())}){separator}");