From ddfcf1add462b200e8cf738ffc25d9fa1e98c9dc Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 9 Aug 2023 10:47:47 -0600 Subject: refactor(ext/fetch): Remove FetchRequestBodyResource from FetchHandler interface (#20100) This is unused and will allow us to remove `FetchRequestBodyResource` in a future PR. --- ext/fetch/fs_fetch_handler.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'ext/fetch/fs_fetch_handler.rs') diff --git a/ext/fetch/fs_fetch_handler.rs b/ext/fetch/fs_fetch_handler.rs index 0a83faaa1..83880c4ca 100644 --- a/ext/fetch/fs_fetch_handler.rs +++ b/ext/fetch/fs_fetch_handler.rs @@ -3,7 +3,6 @@ use crate::CancelHandle; use crate::CancelableResponseFuture; use crate::FetchHandler; -use crate::FetchRequestBodyResource; use deno_core::error::type_error; use deno_core::futures::FutureExt; @@ -25,11 +24,7 @@ impl FetchHandler for FsFetchHandler { &self, _state: &mut OpState, url: Url, - ) -> ( - CancelableResponseFuture, - Option, - Option>, - ) { + ) -> (CancelableResponseFuture, Option>) { let cancel_handle = CancelHandle::new_rc(); let response_fut = async move { let path = url.to_file_path()?; @@ -49,6 +44,6 @@ impl FetchHandler for FsFetchHandler { .or_cancel(&cancel_handle) .boxed_local(); - (response_fut, None, Some(cancel_handle)) + (response_fut, Some(cancel_handle)) } } -- cgit v1.2.3