diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-08-13 14:55:01 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-08-13 18:34:44 +0200 |
commit | fc6faf72ee6a50b878511066d70b18fa80a84d42 (patch) | |
tree | 97e13620714c75411038534326e4ed3e180ddbcf /components/script/dom/request.rs | |
parent | 9f5122f48724ae125e687bed246b5fe4ebc38e03 (diff) | |
download | servo-fc6faf72ee6a50b878511066d70b18fa80a84d42.tar.gz servo-fc6faf72ee6a50b878511066d70b18fa80a84d42.zip |
Update Rust to 1.12.0-nightly (1deb02ea6 2016-08-12)
Diffstat (limited to 'components/script/dom/request.rs')
-rw-r--r-- | components/script/dom/request.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/request.rs b/components/script/dom/request.rs index a764aec6265..7f612157566 100644 --- a/components/script/dom/request.rs +++ b/components/script/dom/request.rs @@ -507,13 +507,13 @@ fn includes_credentials(input: &Url) -> bool { // TODO: `Readable Stream` object is not implemented in Servo yet. // https://fetch.spec.whatwg.org/#concept-body-disturbed -fn request_is_disturbed(input: &Request) -> bool { +fn request_is_disturbed(_input: &Request) -> bool { false } // TODO: `Readable Stream` object is not implemented in Servo yet. // https://fetch.spec.whatwg.org/#concept-body-locked -fn request_is_locked(input: &Request) -> bool { +fn request_is_locked(_input: &Request) -> bool { false } |