Skip to content

Commit 77ca18e

Browse files
committed
refactor: drop unsused usings
1 parent b1e0abb commit 77ca18e

3 files changed

Lines changed: 0 additions & 8 deletions

File tree

src/Base58Encoding.Benchmarks/BoundsCheckComparisonBenchmark.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using BenchmarkDotNet.Attributes;
2-
using BenchmarkDotNet.Columns;
32
using BenchmarkDotNet.Diagnosers;
43
using BenchmarkDotNet.Jobs;
54
using System.Runtime.CompilerServices;
@@ -17,7 +16,6 @@ public class BoundsCheckComparisonBenchmark
1716
private const int Base = 58;
1817
private const int MaxStackallocByte = 512;
1918
private byte[] _testData = null!;
20-
private Base58 _base58 = null!;
2119

2220
[Params(TestVectors.VectorType.BitcoinAddress, TestVectors.VectorType.SolanaAddress, TestVectors.VectorType.SolanaTx, TestVectors.VectorType.IPFSHash, TestVectors.VectorType.MoneroAddress, TestVectors.VectorType.FlickrTestData, TestVectors.VectorType.RippleTestData)]
2321
public TestVectors.VectorType VectorType { get; set; }
@@ -26,7 +24,6 @@ public class BoundsCheckComparisonBenchmark
2624
public void Setup()
2725
{
2826
_testData = TestVectors.GetVector(VectorType);
29-
_base58 = Base58.Bitcoin;
3027
}
3128

3229
[Benchmark(Baseline = true)]

src/Base58Encoding.Benchmarks/CountLeadingCharactersBenchmark.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
using BenchmarkDotNet.Attributes;
2-
using BenchmarkDotNet.Columns;
32
using BenchmarkDotNet.Jobs;
4-
using System.Collections.Generic;
53
using System.Runtime.CompilerServices;
64
using System.Runtime.InteropServices;
7-
using static System.Net.Mime.MediaTypeNames;
85

96
namespace Base58Encoding.Benchmarks;
107

src/Base58Encoding.Benchmarks/CountLeadingZerosBenchmark.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using BenchmarkDotNet.Attributes;
2-
using BenchmarkDotNet.Columns;
32
using BenchmarkDotNet.Jobs;
4-
using System.Collections.Generic;
53
using System.Numerics;
64
using System.Runtime.CompilerServices;
75
using System.Runtime.InteropServices;

0 commit comments

Comments
 (0)