aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp/src/select_all.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-01-08 07:31:19 +0000
committerBlaž Hrastnik2021-01-08 07:37:36 +0000
commit777a80917db01e658139da11a20ff08256667cfe (patch)
treebe813dfd5f59a6f4c4db937c12769927d8d42c13 /helix-lsp/src/select_all.rs
parent7d41550a23fc3506a37016d5bc362144fb00c080 (diff)
Address clippy lints.
Diffstat (limited to 'helix-lsp/src/select_all.rs')
-rw-r--r--helix-lsp/src/select_all.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/select_all.rs b/helix-lsp/src/select_all.rs
index 987f2a10..b0623203 100644
--- a/helix-lsp/src/select_all.rs
+++ b/helix-lsp/src/select_all.rs
@@ -119,7 +119,7 @@ where
I: IntoIterator,
I::Item: Stream + Unpin,
{
- let mut set = SelectAll::new();
+ let set = SelectAll::new();
for stream in streams {
set.push(stream);