aboutsummaryrefslogtreecommitdiff
path: root/benches/Jellyfin.Common.Benches/Program.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-11-27 01:59:58 -0500
committerGitHub <noreply@github.com>2020-11-27 01:59:58 -0500
commit9169a28df195b999c3813f842780dd7763bbcc9f (patch)
treeb64a9107b52c1bb3017be11da760f36d3aca113b /benches/Jellyfin.Common.Benches/Program.cs
parent536ac4c11cfff5349b973892f206fe5cfb0ae6f0 (diff)
parent38932fc7d1c6851b6a282e9723bea471ef494b96 (diff)
Merge pull request #4588 from jellyfin/hex
Remove Hex class as the BCL has one now
Diffstat (limited to 'benches/Jellyfin.Common.Benches/Program.cs')
-rw-r--r--benches/Jellyfin.Common.Benches/Program.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/benches/Jellyfin.Common.Benches/Program.cs b/benches/Jellyfin.Common.Benches/Program.cs
deleted file mode 100644
index b218b0dc1..000000000
--- a/benches/Jellyfin.Common.Benches/Program.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using BenchmarkDotNet.Running;
-
-namespace Jellyfin.Common.Benches
-{
- public static class Program
- {
- public static void Main(string[] args)
- {
- _ = BenchmarkRunner.Run<HexEncodeBenches>();
- _ = BenchmarkRunner.Run<HexDecodeBenches>();
- }
- }
-}