Remove unused nuget JetBrains.Annotations

This commit is contained in:
2024-11-16 22:19:05 +01:00
parent 13d9218944
commit 711d20bf72
5 changed files with 1 additions and 6 deletions

View File

@@ -1,7 +1,6 @@
namespace CvsLib.Tests;
[TestSubject(typeof(ByteArraySearcher))]
public class ByteArraySearcherTests
{
[Fact]
@@ -9,7 +8,7 @@ public class ByteArraySearcherTests
{
// --- Arrange
byte[] haystack = [1, 2, 3, 4, 5,];
byte[] needle = Array.Empty<byte>();
byte[] needle = [];
ByteArraySearcher searcher = new(needle);
// --- Act