From ef25c86cd7197274850fb268b1e27617035b0bac Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 4 Oct 2016 16:36:34 +0200 Subject: Squash some build warnings. --- components/script/fetch.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/script/fetch.rs') diff --git a/components/script/fetch.rs b/components/script/fetch.rs index 0fc0fef1f89..d60d174daad 100644 --- a/components/script/fetch.rs +++ b/components/script/fetch.rs @@ -153,12 +153,12 @@ impl FetchResponseListener for FetchContext { self.fetch_promise = Some(TrustedPromise::new(promise)); } - fn process_response_chunk(&mut self, mut chunk: Vec) { + fn process_response_chunk(&mut self, _chunk: Vec) { // TODO when body is implemented // ... this will append the chunk to Response's body. } - fn process_response_eof(&mut self, response: Result<(), NetworkError>) { + fn process_response_eof(&mut self, _response: Result<(), NetworkError>) { // TODO // ... trailerObject is not supported in Servo yet. } -- cgit v1.2.3