aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/world.rs
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2020-01-11 20:37:01 +0000
committerEmil Lauridsen <[email protected]>2020-01-11 20:37:01 +0000
commit8e778f9842123e1f688a2632d99e439821801bd2 (patch)
tree63364fcb041297dd8915d9ac6786d71d6c41bbb8 /crates/ra_lsp_server/src/world.rs
parent480c44918c73922b134b670cbd33014b8fcfc883 (diff)
Clean up straggling mut
Diffstat (limited to 'crates/ra_lsp_server/src/world.rs')
-rw-r--r--crates/ra_lsp_server/src/world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/world.rs b/crates/ra_lsp_server/src/world.rs
index a52bd2633..c0175c726 100644
--- a/crates/ra_lsp_server/src/world.rs
+++ b/crates/ra_lsp_server/src/world.rs
@@ -74,7 +74,7 @@ impl WorldState {
74 lru_capacity: Option<usize>, 74 lru_capacity: Option<usize>,
75 exclude_globs: &[Glob], 75 exclude_globs: &[Glob],
76 watch: Watch, 76 watch: Watch,
77 mut options: Options, 77 options: Options,
78 feature_flags: FeatureFlags, 78 feature_flags: FeatureFlags,
79 ) -> WorldState { 79 ) -> WorldState {
80 let mut change = AnalysisChange::new(); 80 let mut change = AnalysisChange::new();