We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f36e0e commit 195b59eCopy full SHA for 195b59e
1 file changed
src/java.rs
@@ -585,9 +585,9 @@ impl Extension for Java {
585
let code = format!("{prefix}{ctor_name}() {{}} }}");
586
let ctor_start = prefix.len();
587
588
- let mut spans = vec![
589
- CodeLabelSpan::code_range(ctor_start..ctor_start + ctor_name.len()),
590
- ];
+ let mut spans = vec![CodeLabelSpan::code_range(
+ ctor_start..ctor_start + ctor_name.len(),
+ )];
591
if !rest.is_empty() {
592
spans.push(CodeLabelSpan::literal(rest.to_string(), None));
593
}
0 commit comments