File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
csharp/autobuilder/Semmle.Autobuild.CSharp Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,12 @@ public class CSharpAutobuilder : Autobuilder<CSharpAutobuildOptions>
36
36
37
37
private readonly AutoBuildRule autoBuildRule ;
38
38
39
- private readonly DiagnosticClassifier diagnosticClassifier ;
40
-
41
- protected override DiagnosticClassifier DiagnosticClassifier => diagnosticClassifier ;
39
+ protected override DiagnosticClassifier DiagnosticClassifier { get ; }
42
40
43
41
public CSharpAutobuilder ( IBuildActions actions , CSharpAutobuildOptions options ) : base ( actions , options )
44
42
{
45
43
this . autoBuildRule = new AutoBuildRule ( this ) ;
46
- this . diagnosticClassifier = new CSharpDiagnosticClassifier ( ) ;
44
+ this . DiagnosticClassifier = new CSharpDiagnosticClassifier ( ) ;
47
45
}
48
46
49
47
public override BuildScript GetBuildScript ( )
You can’t perform that action at this time.
0 commit comments