Skip to content

Commit 5f2b073

Browse files
committed
Remove unused DiagnoserResults.TotalOperations.
1 parent 6009528 commit 5f2b073

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/BenchmarkDotNet/Diagnosers/DiagnoserResults.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33
using BenchmarkDotNet.Running;
44
using BenchmarkDotNet.Toolchains.Results;
55
using System.Collections.Generic;
6-
using System.Linq;
76

87
namespace BenchmarkDotNet.Diagnosers
98
{
109
public class DiagnoserResults(BenchmarkCase benchmarkCase, ExecuteResult executeResult, BuildResult buildResult)
1110
{
1211
public BenchmarkCase BenchmarkCase { get; } = benchmarkCase;
1312

14-
public long TotalOperations { get; } = executeResult.Measurements.Where(measurement => measurement.IsWorkload()).Sum(m => m.Operations);
15-
1613
public GcStats GcStats { get; } = executeResult.GcStats;
1714

1815
public BuildResult BuildResult { get; } = buildResult;

0 commit comments

Comments
 (0)