aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-29 22:10:14 +0000
committerGitHub <[email protected]>2020-02-29 22:10:14 +0000
commit6ee3470975b5a317feac7fcdf0586ff098332303 (patch)
tree9de052e2c33240f97eae8e11d576ed1c02574ade
parentad4e108c39696b368705d9238f44b10fced91a58 (diff)
parent2e0d89401a85edceaa2a8da6c6bb4cd9d8d17354 (diff)
Merge #3381
3381: Remove debug print r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r--crates/ra_ide/src/syntax_highlighting.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs
index b94b6a022..28117b4d8 100644
--- a/crates/ra_ide/src/syntax_highlighting.rs
+++ b/crates/ra_ide/src/syntax_highlighting.rs
@@ -120,7 +120,6 @@ pub(crate) fn highlight(
120 if let Some(token) = element.as_token().cloned().and_then(ast::RawString::cast) { 120 if let Some(token) = element.as_token().cloned().and_then(ast::RawString::cast) {
121 let expanded = element_to_highlight.as_token().unwrap().clone(); 121 let expanded = element_to_highlight.as_token().unwrap().clone();
122 if highlight_injection(&mut res, &sema, token, expanded).is_some() { 122 if highlight_injection(&mut res, &sema, token, expanded).is_some() {
123 eprintln!("res = {:?}", res);
124 continue; 123 continue;
125 } 124 }
126 } 125 }