mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Remove unused parameter from createContent()
No longer used since 513e470b52
.
This commit is contained in:
@ -51,7 +51,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
}
|
||||
|
||||
Columns = createHeaders();
|
||||
Content = value.Select((g, i) => createContent(i, g)).ToArray().ToRectangular();
|
||||
Content = value.Select(createContent).ToArray().ToRectangular();
|
||||
}
|
||||
}
|
||||
|
||||
@ -76,7 +76,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
return columns.ToArray();
|
||||
}
|
||||
|
||||
private Drawable[] createContent(int index, ControlPointGroup group)
|
||||
private Drawable[] createContent(ControlPointGroup group)
|
||||
{
|
||||
return new Drawable[]
|
||||
{
|
||||
|
Reference in New Issue
Block a user