aboutsummaryrefslogtreecommitdiff
path: root/benches/Jellyfin.Common.Benches/Program.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-11-25 23:40:31 +0100
committerBond_009 <bond.009@outlook.com>2020-11-25 23:40:31 +0100
commit8c8a71692e2f42e30f95e9ff38cc5442a0d56978 (patch)
tree0ad3a0c4ea78de83d142c8446ee3d15345408fe9 /benches/Jellyfin.Common.Benches/Program.cs
parent9534f55eb077249b102e56cc0bc64e95b704cf85 (diff)
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>();
- }
- }
-}