summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-11-30 14:19:32 -0500
committerGitHub <noreply@github.com>2022-11-30 19:19:32 +0000
commit623dbe7a5786a5aa600b14a7e13e26777313d844 (patch)
treed5e5fdf567df986490a7e2be7f71e2b44f3ed070 /cli
parent972048ce364a05bbb53a5cb3697dbf364cd3c412 (diff)
chore: remove unnecessary lifetimes (#16878)
It seems we don't really need to allow these clippy rules.
Diffstat (limited to 'cli')
-rw-r--r--cli/lsp/documents.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/documents.rs b/cli/lsp/documents.rs
index 1fd9b541d..fb0540bcd 100644
--- a/cli/lsp/documents.rs
+++ b/cli/lsp/documents.rs
@@ -634,7 +634,7 @@ struct FileSystemDocuments {
}
impl FileSystemDocuments {
- pub fn get<'a>(
+ pub fn get(
&mut self,
cache: &HttpCache,
maybe_resolver: Option<&dyn deno_graph::source::Resolver>,