@@ -18,7 +18,7 @@ public SimpleJobAttribute(
1818 int warmupCount = DefaultValue ,
1919 int iterationCount = DefaultValue ,
2020 int invocationCount = DefaultValue ,
21- string id = null ,
21+ string ? id = null ,
2222 bool baseline = false
2323 ) : base ( CreateJob ( id , launchCount , warmupCount , iterationCount , invocationCount , null , baseline ) ) { }
2424
@@ -29,7 +29,7 @@ public SimpleJobAttribute(
2929 int warmupCount = DefaultValue ,
3030 int iterationCount = DefaultValue ,
3131 int invocationCount = DefaultValue ,
32- string id = null ,
32+ string ? id = null ,
3333 bool baseline = false
3434 ) : base ( CreateJob ( id , launchCount , warmupCount , iterationCount , invocationCount , runStrategy , baseline ) ) { }
3535
@@ -40,7 +40,7 @@ public SimpleJobAttribute(
4040 int warmupCount = DefaultValue ,
4141 int iterationCount = DefaultValue ,
4242 int invocationCount = DefaultValue ,
43- string id = null ,
43+ string ? id = null ,
4444 bool baseline = false
4545 ) : base ( CreateJob ( id , launchCount , warmupCount , iterationCount , invocationCount , null , baseline , runtimeMoniker ) ) { }
4646
@@ -52,11 +52,11 @@ public SimpleJobAttribute(
5252 int warmupCount = DefaultValue ,
5353 int iterationCount = DefaultValue ,
5454 int invocationCount = DefaultValue ,
55- string id = null ,
55+ string ? id = null ,
5656 bool baseline = false
5757 ) : base ( CreateJob ( id , launchCount , warmupCount , iterationCount , invocationCount , runStrategy , baseline , runtimeMoniker ) ) { }
5858
59- private static Job CreateJob ( string id , int launchCount , int warmupCount , int iterationCount , int invocationCount , RunStrategy ? runStrategy ,
59+ private static Job CreateJob ( string ? id , int launchCount , int warmupCount , int iterationCount , int invocationCount , RunStrategy ? runStrategy ,
6060 bool baseline , RuntimeMoniker runtimeMoniker = RuntimeMoniker . HostProcess )
6161 {
6262 var job = new Job ( id ) ;
0 commit comments