aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorVille Penttinen <[email protected]>2019-03-05 20:20:11 +0000
committerVille Penttinen <[email protected]>2019-03-05 20:20:11 +0000
commit80347b8187e8cc9f062335bc62643c009e7400d8 (patch)
tree564a04dce9ebafb080207a658bdbc2758b6c6054 /crates/ra_lsp_server
parent9063dabcca0aaaa6d8bb3364cee21fd68023a059 (diff)
Remove InternalFeedback
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/req.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/crates/ra_lsp_server/src/req.rs b/crates/ra_lsp_server/src/req.rs
index 484fde7e5..e0571fd78 100644
--- a/crates/ra_lsp_server/src/req.rs
+++ b/crates/ra_lsp_server/src/req.rs
@@ -172,10 +172,3 @@ pub struct SourceChange {
172 pub workspace_edit: WorkspaceEdit, 172 pub workspace_edit: WorkspaceEdit,
173 pub cursor_position: Option<TextDocumentPositionParams>, 173 pub cursor_position: Option<TextDocumentPositionParams>,
174} 174}
175
176pub enum InternalFeedback {}
177
178impl Notification for InternalFeedback {
179 const METHOD: &'static str = "internalFeedback";
180 type Params = String;
181}