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>
3636
3737 private readonly AutoBuildRule autoBuildRule ;
3838
39- private readonly DiagnosticClassifier diagnosticClassifier ;
40-
41- protected override DiagnosticClassifier DiagnosticClassifier => diagnosticClassifier ;
39+ protected override DiagnosticClassifier DiagnosticClassifier { get ; }
4240
4341 public CSharpAutobuilder ( IBuildActions actions , CSharpAutobuildOptions options ) : base ( actions , options )
4442 {
4543 this . autoBuildRule = new AutoBuildRule ( this ) ;
46- this . diagnosticClassifier = new CSharpDiagnosticClassifier ( ) ;
44+ this . DiagnosticClassifier = new CSharpDiagnosticClassifier ( ) ;
4745 }
4846
4947 public override BuildScript GetBuildScript ( )
You can’t perform that action at this time.
0 commit comments