aboutsummaryrefslogtreecommitdiff
path: root/crates/assists/src/handlers/raw_string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/assists/src/handlers/raw_string.rs')
-rw-r--r--crates/assists/src/handlers/raw_string.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/assists/src/handlers/raw_string.rs b/crates/assists/src/handlers/raw_string.rs
index 7f9f01c9c..4c759cc25 100644
--- a/crates/assists/src/handlers/raw_string.rs
+++ b/crates/assists/src/handlers/raw_string.rs
@@ -1,9 +1,6 @@
1use std::borrow::Cow; 1use std::borrow::Cow;
2 2
3use syntax::{ 3use syntax::{ast, AstToken, TextRange, TextSize};
4 ast::{self, HasQuotes, HasStringValue},
5 AstToken, TextRange, TextSize,
6};
7use test_utils::mark; 4use test_utils::mark;
8 5
9use crate::{AssistContext, AssistId, AssistKind, Assists}; 6use crate::{AssistContext, AssistId, AssistKind, Assists};