Skip to content

Commit

Permalink
Remvoe null check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matasx committed Dec 8, 2024
1 parent aa88ecc commit 0b5d3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Authentication/Multi/MultiAuthenticationConcern.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public sealed class MultiAuthenticationConcern : IConcern
public MultiAuthenticationConcern(IHandler content, IConcern[] delegatingConcerns)
{
Content = content;
_delegatingConcerns = delegatingConcerns ?? [];
_delegatingConcerns = delegatingConcerns;
}

#endregion
Expand Down

0 comments on commit 0b5d3e6

Please sign in to comment.