Skip to content

Commit 5e44289

Browse files
committed
make SortedValues internal property, don't export it!
1 parent 7ef5f65 commit 5e44289

File tree

4 files changed

+13
-85
lines changed

4 files changed

+13
-85
lines changed

src/BenchmarkDotNet/Mathematics/Statistics.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace BenchmarkDotNet.Mathematics
99
public class Statistics
1010
{
1111
public IReadOnlyList<double> OriginalValues { get; }
12-
public IReadOnlyList<double> SortedValues { get; }
12+
internal IReadOnlyList<double> SortedValues { get; }
1313
public int N { get; }
1414
public double Min { get; }
1515
public double LowerFence { get; }

0 commit comments

Comments
 (0)