Skip to content

Commit

Permalink
Benchmark warning cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jehugaleahsa committed Jul 6, 2021
1 parent 2df1311 commit fddf7a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion FlatFiles.Benchmark/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
Expand All @@ -9,7 +10,7 @@ namespace FlatFiles.Benchmark
{
class Program
{
static void Main(string[] args)
static void Main()
{
RunBenchmarks();

Expand Down Expand Up @@ -37,6 +38,7 @@ private static void RunBenchmarks()
Console.In.ReadLine();
}

[SuppressMessage("CodeQuality", "IDE0051")]
private static void RunPerformanceMonitor()
{
var tester = new AsyncVsSyncTest();
Expand Down

0 comments on commit fddf7a3

Please sign in to comment.