Skip to content

Commit

Permalink
Merge pull request #501 from baynezy/feature/issue-500-sonar
Browse files Browse the repository at this point in the history
Fix sonar issues
  • Loading branch information
baynezy authored Dec 19, 2024
2 parents 24d4b87 + 8bfba52 commit 1c75c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Html2Markdown/Replacement/CompositeReplacer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// </summary>
public abstract class CompositeReplacer : IReplacer
{
private readonly IList<IReplacer> _replacements = new List<IReplacer>();
private readonly List<IReplacer> _replacements = [];

/// <summary>
/// Adds a replacer to the list of replacements.
Expand Down

0 comments on commit 1c75c50

Please sign in to comment.