mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Squash some build warnings.
This commit is contained in:
parent
b80769dbf5
commit
ef25c86cd7
2 changed files with 2 additions and 4 deletions
|
@ -153,12 +153,12 @@ impl FetchResponseListener for FetchContext {
|
|||
self.fetch_promise = Some(TrustedPromise::new(promise));
|
||||
}
|
||||
|
||||
fn process_response_chunk(&mut self, mut chunk: Vec<u8>) {
|
||||
fn process_response_chunk(&mut self, _chunk: Vec<u8>) {
|
||||
// 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.
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue