@@ -25,11 +25,11 @@ private static DiagnosticDescriptor Create(string id, string title, string messa
2525
2626 protected static DiagnosticDescriptor LibraryInfo ( string id , string title , string messageFormat ) => Create ( id , title , messageFormat , Category . Library , DiagnosticSeverity . Info ) ;
2727
28- protected static DiagnosticDescriptor SqlWarning ( string id , string title , string messageFormat , bool docs = true ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Warning ) ;
28+ protected static DiagnosticDescriptor SqlWarning ( string id , string title , string messageFormat ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Warning ) ;
2929
30- protected static DiagnosticDescriptor SqlError ( string id , string title , string messageFormat , bool docs = true ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Error ) ;
30+ protected static DiagnosticDescriptor SqlError ( string id , string title , string messageFormat ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Error ) ;
3131
32- protected static DiagnosticDescriptor SqlInfo ( string id , string title , string messageFormat , bool docs = true ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Info ) ;
32+ protected static DiagnosticDescriptor SqlInfo ( string id , string title , string messageFormat ) => Create ( id , title , messageFormat , Category . Sql , DiagnosticSeverity . Info ) ;
3333
3434 protected static DiagnosticDescriptor PerformanceWarning ( string id , string title , string messageFormat ) => Create ( id , title , messageFormat , Category . Performance , DiagnosticSeverity . Warning ) ;
3535
0 commit comments