@@ -22,9 +22,9 @@ internal class ProxyHost
22
22
internal static readonly string RecordOptionName = "--record" ;
23
23
private readonly Option < bool ? > _recordOption ;
24
24
internal static readonly string WatchPidsOptionName = "--watch-pids" ;
25
- private readonly Option < IEnumerable < int > ? > _watchPidsOption ;
25
+ private readonly Option < IEnumerable < int > > _watchPidsOption ;
26
26
internal static readonly string WatchProcessNamesOptionName = "--watch-process-names" ;
27
- private readonly Option < IEnumerable < string > ? > _watchProcessNamesOption ;
27
+ private readonly Option < IEnumerable < string > > _watchProcessNamesOption ;
28
28
internal static readonly string ConfigFileOptionName = "--config-file" ;
29
29
private static Option < string ? > ? _configFileOption ;
30
30
internal static readonly string NoFirstRunOptionName = "--no-first-run" ;
@@ -216,13 +216,13 @@ public ProxyHost()
216
216
217
217
_recordOption = new Option < bool ? > ( RecordOptionName , "Use this option to record all request logs" ) ;
218
218
219
- _watchPidsOption = new Option < IEnumerable < int > ? > ( WatchPidsOptionName , "The IDs of processes to watch for requests" )
219
+ _watchPidsOption = new Option < IEnumerable < int > > ( WatchPidsOptionName , "The IDs of processes to watch for requests" )
220
220
{
221
221
ArgumentHelpName = "pids" ,
222
222
AllowMultipleArgumentsPerToken = true
223
223
} ;
224
224
225
- _watchProcessNamesOption = new Option < IEnumerable < string > ? > ( WatchProcessNamesOptionName , "The names of processes to watch for requests" )
225
+ _watchProcessNamesOption = new Option < IEnumerable < string > > ( WatchProcessNamesOptionName , "The names of processes to watch for requests" )
226
226
{
227
227
ArgumentHelpName = "processNames" ,
228
228
AllowMultipleArgumentsPerToken = true
0 commit comments