Skip to content

Commit b3a06e1

Browse files
committed
Address comments
1 parent ce4889b commit b3a06e1

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/BenchmarkDotNet/Analysers/EnvironmentAnalyser.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Collections.Generic;
2-
using System.Collections.Immutable;
32
using System.Linq;
43
using System.Reflection;
54
using System.Text;
@@ -9,7 +8,6 @@
98
using BenchmarkDotNet.Reports;
109
using BenchmarkDotNet.Toolchains.InProcess.Emit;
1110
using BenchmarkDotNet.Toolchains.InProcess.NoEmit;
12-
using BenchmarkDotNet.Toolchains.Results;
1311

1412
namespace BenchmarkDotNet.Analysers
1513
{

src/BenchmarkDotNet/Reports/BenchmarkReport.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public BenchmarkReport(
4747
?? (IReadOnlyDictionary<string, Metric>)ImmutableDictionary<string, Metric>.Empty;
4848
}
4949

50-
public BenchmarkReport(BenchmarkCase benchmarkCase, GenerateResult generateResult, BuildResult buildResult)
50+
internal BenchmarkReport(BenchmarkCase benchmarkCase, GenerateResult generateResult, BuildResult buildResult)
5151
{
5252
BenchmarkCase = benchmarkCase;
5353
GenerateResult = generateResult;

0 commit comments

Comments
 (0)