diff --git a/crates/ide/src/annotations.rs b/crates/ide/src/annotations.rs index fd234358c59..3bd72d40e5e 100644 --- a/crates/ide/src/annotations.rs +++ b/crates/ide/src/annotations.rs @@ -40,8 +40,6 @@ pub struct AnnotationConfig { pub annotate_impls: bool, pub annotate_references: bool, pub annotate_method_references: bool, - pub run: bool, - pub debug: bool, } pub(crate) fn annotations( diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index 1c0a0b27192..af53eb2396f 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs @@ -1147,8 +1147,6 @@ pub(crate) fn handle_code_lens( annotate_impls: lens_config.implementations, annotate_references: lens_config.refs, annotate_method_references: lens_config.method_refs, - run: lens_config.run, - debug: lens_config.debug, }, file_id, )?;