Skip to content

Commit 20e9aa2

Browse files
committed
Future proof by explicitly matching against None
1 parent 88702a7 commit 20e9aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ra_lsp_server/src/main_loop/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ pub fn handle_code_lens_resolve(world: ServerWorld, code_lens: CodeLens) -> Resu
727727
data: None,
728728
});
729729
}
730-
_ => {
730+
None => {
731731
return Ok(CodeLens {
732732
range: code_lens.range,
733733
command: Some(Command {

0 commit comments

Comments
 (0)