remove option from Diagnostic

This commit is contained in:
gfreezy 2018-12-24 23:00:18 +08:00
parent 70df097c89
commit 29798c763c
4 changed files with 7 additions and 7 deletions

View file

@ -197,7 +197,7 @@ pub struct Diagnostic {
pub message: String,
pub range: TextRange,
pub fix: Option<SourceChange>,
pub severity: Option<Severity>,
pub severity: Severity,
}
#[derive(Debug)]