diff options
author | Aleksey Kladov <[email protected]> | 2019-08-20 17:55:34 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-08-20 17:55:34 +0100 |
commit | 77751cfe01311d9e4fbb61c8dca352289499b3b7 (patch) | |
tree | 9999ec82f777d9cbec9223dadfa6e1907a1dd862 /crates | |
parent | deba1fedfaac49804896d238e16aeb32ea8a2d97 (diff) |
remove debug-print
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_lsp_server/src/conv.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs index 818fa6d61..0ad2ea10f 100644 --- a/crates/ra_lsp_server/src/conv.rs +++ b/crates/ra_lsp_server/src/conv.rs | |||
@@ -217,7 +217,6 @@ impl ConvWith<(&LineIndex, LineEndings)> for &AtomTextEdit { | |||
217 | self, | 217 | self, |
218 | (line_index, line_endings): (&LineIndex, LineEndings), | 218 | (line_index, line_endings): (&LineIndex, LineEndings), |
219 | ) -> lsp_types::TextEdit { | 219 | ) -> lsp_types::TextEdit { |
220 | eprintln!("line_endings = {:?}", line_endings); | ||
221 | let mut new_text = self.insert.clone(); | 220 | let mut new_text = self.insert.clone(); |
222 | if line_endings == LineEndings::Dos { | 221 | if line_endings == LineEndings::Dos { |
223 | new_text = new_text.replace('\n', "\r\n"); | 222 | new_text = new_text.replace('\n', "\r\n"); |