Remove unused aTriedToWrap argument.

This commit is contained in:
Ms2ger 2013-10-17 13:28:28 +02:00
parent 6db57e6f72
commit 25cae74093
18 changed files with 22 additions and 43 deletions

View file

@ -77,7 +77,6 @@ impl Reflectable for HTMLCollection {
}
fn wrap_object_shared(@mut self, cx: *JSContext, scope: *JSObject) -> *JSObject {
let mut unused = false;
HTMLCollectionBinding::Wrap(cx, scope, self, &mut unused)
HTMLCollectionBinding::Wrap(cx, scope, self)
}
}