aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorDavid Wood <[email protected]>2019-03-06 23:39:50 +0000
committerDavid Wood <[email protected]>2019-03-07 00:05:07 +0000
commit614dd3c34721a4f97e8c4f1eb89aed4362338ebb (patch)
treef8d353555372c6dc36c1321e3771a7fb71eaea44 /crates/ra_lsp_server
parent00d927a1885ec2938d3365a8e136993445b437f5 (diff)
Rename and change `add_roots` to return a `Vec`.
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/server_world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/server_world.rs b/crates/ra_lsp_server/src/server_world.rs
index 4625a26a7..7163568b9 100644
--- a/crates/ra_lsp_server/src/server_world.rs
+++ b/crates/ra_lsp_server/src/server_world.rs
@@ -40,7 +40,7 @@ impl ServerWorldState {
40 let mut roots = Vec::new(); 40 let mut roots = Vec::new();
41 roots.push(root.clone()); 41 roots.push(root.clone());
42 for ws in workspaces.iter() { 42 for ws in workspaces.iter() {
43 ws.add_roots(&mut roots); 43 roots.extend(ws.to_roots());
44 } 44 }
45 let (mut vfs, roots) = Vfs::new(roots); 45 let (mut vfs, roots) = Vfs::new(roots);
46 let roots_to_scan = roots.len(); 46 let roots_to_scan = roots.len();