1- using System ;
1+ using System ;
22using System . Collections . Generic ;
33using System . Collections . Immutable ;
44using System . Globalization ;
1010using BenchmarkDotNet . Exporters ;
1111using BenchmarkDotNet . Filters ;
1212using BenchmarkDotNet . Jobs ;
13- using BenchmarkDotNet . Locators ;
1413using BenchmarkDotNet . Loggers ;
1514using BenchmarkDotNet . Order ;
1615using BenchmarkDotNet . Reports ;
@@ -25,7 +24,6 @@ public sealed class ImmutableConfig : IConfig
2524 // if something is an array here instead of hashset it means it must have a guaranteed order of elements
2625 private readonly ImmutableArray < IColumnProvider > columnProviders ;
2726 private readonly ImmutableArray < IExporter > exporters ;
28- private readonly ImmutableArray < IFileLocator > fileLocators ;
2927 private readonly ImmutableHashSet < ILogger > loggers ;
3028 private readonly ImmutableHashSet < IDiagnoser > diagnosers ;
3129 private readonly ImmutableHashSet < IAnalyser > analysers ;
@@ -43,7 +41,6 @@ internal ImmutableConfig(
4341 ImmutableHashSet < HardwareCounter > uniqueHardwareCounters ,
4442 ImmutableHashSet < IDiagnoser > uniqueDiagnosers ,
4543 ImmutableArray < IExporter > uniqueExporters ,
46- ImmutableArray < IFileLocator > uniqueFileLocators ,
4744 ImmutableHashSet < IAnalyser > uniqueAnalyzers ,
4845 ImmutableHashSet < IValidator > uniqueValidators ,
4946 ImmutableHashSet < IFilter > uniqueFilters ,
@@ -66,7 +63,6 @@ internal ImmutableConfig(
6663 hardwareCounters = uniqueHardwareCounters ;
6764 diagnosers = uniqueDiagnosers ;
6865 exporters = uniqueExporters ;
69- fileLocators = uniqueFileLocators ;
7066 analysers = uniqueAnalyzers ;
7167 validators = uniqueValidators ;
7268 filters = uniqueFilters ;
@@ -96,7 +92,6 @@ internal ImmutableConfig(
9692
9793 public IEnumerable < IColumnProvider > GetColumnProviders ( ) => columnProviders ;
9894 public IEnumerable < IExporter > GetExporters ( ) => exporters ;
99- public IEnumerable < IFileLocator > GetFileLocators ( ) => fileLocators ;
10095 public IEnumerable < ILogger > GetLoggers ( ) => loggers ;
10196 public IEnumerable < IDiagnoser > GetDiagnosers ( ) => diagnosers ;
10297 public IEnumerable < IAnalyser > GetAnalysers ( ) => analysers ;
0 commit comments