diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-09-21 15:38:51 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-09-21 15:38:51 +0200 |
commit | fe4f3543c1a65b810a9a05258d9825180fa5df8f (patch) | |
tree | a3fb12308299dc93dd9dde1607217d5c1326e94f /components/script/dom | |
parent | 236c687b66ff47f68b4d469db6bc35cdf415fcbf (diff) | |
download | servo-fe4f3543c1a65b810a9a05258d9825180fa5df8f.tar.gz servo-fe4f3543c1a65b810a9a05258d9825180fa5df8f.zip |
Silence a warning in ExtendableEvent::WaitUntil
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/extendableevent.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/extendableevent.rs b/components/script/dom/extendableevent.rs index 76756b40c71..ffb6c3baad2 100644 --- a/components/script/dom/extendableevent.rs +++ b/components/script/dom/extendableevent.rs @@ -51,7 +51,7 @@ impl ExtendableEvent { } // https://w3c.github.io/ServiceWorker/#wait-until-method - pub fn WaitUntil(&self, _cx: *mut JSContext, val: HandleValue) -> ErrorResult { + pub fn WaitUntil(&self, _cx: *mut JSContext, _val: HandleValue) -> ErrorResult { // Step 1 if !self.extensions_allowed { return Err(Error::InvalidState); |