Skip to content

Commit

Permalink
Remove ArrayHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
iamcarbon committed Jan 10, 2023
1 parent 83145a3 commit 641f3fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
6 changes: 3 additions & 3 deletions src/Markdig.Tests/TestDescendantsOrder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ public static void TestSchemas(MarkdownDocument[] specsSyntaxTrees)

if (containerBlock.Count == 0)
{
Assert.AreSame(ArrayHelper.Empty<LiteralInline>(), containerBlock.Descendants<LiteralInline>());
Assert.AreSame(ArrayHelper.Empty<LiteralInline>(), (containerBlock as Block).Descendants<LiteralInline>());
Assert.AreSame(ArrayHelper.Empty<LiteralInline>(), (containerBlock as MarkdownObject).Descendants<LiteralInline>());
Assert.AreSame(Array.Empty<LiteralInline>(), containerBlock.Descendants<LiteralInline>());
Assert.AreSame(Array.Empty<LiteralInline>(), (containerBlock as Block).Descendants<LiteralInline>());
Assert.AreSame(Array.Empty<LiteralInline>(), (containerBlock as MarkdownObject).Descendants<LiteralInline>());
}
}
}
Expand Down
17 changes: 0 additions & 17 deletions src/Markdig/Helpers/ArrayHelper.cs

This file was deleted.

0 comments on commit 641f3fe

Please sign in to comment.