mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 03:33:39 +08: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