diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-12-21 10:30:17 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-12-23 13:23:28 +1100 |
| commit | ce0f703554f3828f2d470679cd1e83b52667bf20 (patch) | |
| tree | 9ce49517d306d21e398069ca7a47bf46482bd479 /compiler/rustc_errors/src/json.rs | |
| parent | 125337bd6810f25857183ac12f1517e0de7b3bf6 (diff) | |
| download | rust-ce0f703554f3828f2d470679cd1e83b52667bf20.tar.gz rust-ce0f703554f3828f2d470679cd1e83b52667bf20.zip | |
Remove `SubDiagnostic::render_span`.
It's only ever set to `None`.
Diffstat (limited to 'compiler/rustc_errors/src/json.rs')
| -rw-r--r-- | compiler/rustc_errors/src/json.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/rustc_errors/src/json.rs b/compiler/rustc_errors/src/json.rs index 624d96014f1..52fcb50e9fb 100644 --- a/compiler/rustc_errors/src/json.rs +++ b/compiler/rustc_errors/src/json.rs @@ -424,11 +424,7 @@ impl Diagnostic { message: translated_message.to_string(), code: None, level: diag.level.to_str(), - spans: diag - .render_span - .as_ref() - .map(|sp| DiagnosticSpan::from_multispan(sp, args, je)) - .unwrap_or_else(|| DiagnosticSpan::from_multispan(&diag.span, args, je)), + spans: DiagnosticSpan::from_multispan(&diag.span, args, je), children: vec![], rendered: None, } |
