aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r--crates/ra_lsp_server/src/conv.rs1
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");