mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Revert incorrect mod nullable parameter specification
This commit is contained in:
@ -124,7 +124,7 @@ namespace osu.Game.Rulesets.Difficulty
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="mods">The original list of <see cref="Mod"/>s.</param>
|
/// <param name="mods">The original list of <see cref="Mod"/>s.</param>
|
||||||
/// <param name="cancellationToken">The cancellation token.</param>
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||||||
private void preProcess(IEnumerable<Mod> mods = null, CancellationToken cancellationToken = default)
|
private void preProcess(IEnumerable<Mod> mods, CancellationToken cancellationToken = default)
|
||||||
{
|
{
|
||||||
playableMods = mods.Select(m => m.DeepClone()).ToArray();
|
playableMods = mods.Select(m => m.DeepClone()).ToArray();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user