1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 17:32:54 +08:00

Match field NRT annotation in ctor argument

This commit is contained in:
Bartłomiej Dach 2023-06-24 15:17:14 +02:00
parent 1f2f522a1e
commit 8fdd599b39
No known key found for this signature in database

View File

@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Changelog
{
private readonly List<APIChangelogBuild>? entries;
public ChangelogListing(List<APIChangelogBuild> entries)
public ChangelogListing(List<APIChangelogBuild>? entries)
{
this.entries = entries;
}