mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 11:42:54 +08:00
Revert incorrect mod nullable parameter specification
This commit is contained in:
parent
e338340c6a
commit
5b5e3dc4a2
@ -124,7 +124,7 @@ namespace osu.Game.Rulesets.Difficulty
|
||||
/// </summary>
|
||||
/// <param name="mods">The original list of <see cref="Mod"/>s.</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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user