aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/mimetypearray.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/mimetypearray.rs')
-rw-r--r--components/script/dom/mimetypearray.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/mimetypearray.rs b/components/script/dom/mimetypearray.rs
index 96fc48c86d0..de820f6d06a 100644
--- a/components/script/dom/mimetypearray.rs
+++ b/components/script/dom/mimetypearray.rs
@@ -46,12 +46,12 @@ impl MimeTypeArrayMethods for MimeTypeArray {
}
// https://html.spec.whatwg.org/multipage/#dom-mimetypearray-item
- fn IndexedGetter(&self, _index: u32, _found: &mut bool) -> Option<Root<MimeType>> {
+ fn IndexedGetter(&self, _index: u32) -> Option<Root<MimeType>> {
None
}
// check-tidy: no specs after this line
- fn NamedGetter(&self, _name: DOMString, _found: &mut bool) -> Option<Root<MimeType>> {
+ fn NamedGetter(&self, _name: DOMString) -> Option<Root<MimeType>> {
None
}