aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/request.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-08-13 14:55:01 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-08-13 18:34:44 +0200
commitfc6faf72ee6a50b878511066d70b18fa80a84d42 (patch)
tree97e13620714c75411038534326e4ed3e180ddbcf /components/script/dom/request.rs
parent9f5122f48724ae125e687bed246b5fe4ebc38e03 (diff)
downloadservo-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.rs4
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
}