From b85b2a90aa5628ce4064f392ba4cd1c1de47871e Mon Sep 17 00:00:00 2001 From: K Simmons Date: Tue, 19 Jul 2022 16:09:09 -0700 Subject: [PATCH] address warnings --- crates/editor/src/hover_popover.rs | 1 - crates/editor/src/test.rs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/editor/src/hover_popover.rs b/crates/editor/src/hover_popover.rs index 733d5fdc03..1509bad340 100644 --- a/crates/editor/src/hover_popover.rs +++ b/crates/editor/src/hover_popover.rs @@ -420,7 +420,6 @@ mod tests { use indoc::indoc; use language::{Diagnostic, DiagnosticSet}; - use lsp::notification; use project::HoverBlock; use crate::test::EditorLspTestContext; diff --git a/crates/editor/src/test.rs b/crates/editor/src/test.rs index 1a57bcdb5c..9151f63e5b 100644 --- a/crates/editor/src/test.rs +++ b/crates/editor/src/test.rs @@ -27,8 +27,7 @@ use workspace::{pane, AppState, Workspace, WorkspaceHandle}; use crate::{ display_map::{DisplayMap, DisplaySnapshot, ToDisplayPoint}, multi_buffer::ToPointUtf16, - AnchorRangeExt, Autoscroll, DisplayPoint, Editor, EditorMode, EditorSnapshot, MultiBuffer, - ToPoint, + AnchorRangeExt, Autoscroll, DisplayPoint, Editor, EditorMode, MultiBuffer, ToPoint, }; #[cfg(test)]