Skip to content

Commit 195b59e

Browse files
committed
style: formatted code with cargo fmt --all
1 parent 0f36e0e commit 195b59e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/java.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -585,9 +585,9 @@ impl Extension for Java {
585585
let code = format!("{prefix}{ctor_name}() {{}} }}");
586586
let ctor_start = prefix.len();
587587

588-
let mut spans = vec![
589-
CodeLabelSpan::code_range(ctor_start..ctor_start + ctor_name.len()),
590-
];
588+
let mut spans = vec![CodeLabelSpan::code_range(
589+
ctor_start..ctor_start + ctor_name.len(),
590+
)];
591591
if !rest.is_empty() {
592592
spans.push(CodeLabelSpan::literal(rest.to_string(), None));
593593
}

0 commit comments

Comments
 (0)