Fix #88256, remove duplicated diagnostic

This commit is contained in:
yukang 2021-09-04 19:26:25 +08:00
parent 26feefddc7
commit ca27f03ca8
11 changed files with 59 additions and 65 deletions

View file

@ -192,6 +192,7 @@ impl<'a> LintDiagnosticBuilder<'a> {
/// Return the inner DiagnosticBuilder, first setting the primary message to `msg`.
pub fn build(mut self, msg: &str) -> DiagnosticBuilder<'a> {
self.0.set_primary_message(msg);
self.0.set_is_lint();
self.0
}