Remove unused argument from AlreadyInRealm::assert.

This commit is contained in:
Josh Matthews 2023-02-16 23:29:49 -05:00
parent fca5833e21
commit 5e5669b945
8 changed files with 10 additions and 12 deletions

View file

@ -2733,7 +2733,7 @@ impl GlobalScope {
image: ImageBitmapSource,
options: &ImageBitmapOptions,
) -> Rc<Promise> {
let in_realm_proof = AlreadyInRealm::assert(&self);
let in_realm_proof = AlreadyInRealm::assert();
let p = Promise::new_in_current_realm(InRealm::Already(&in_realm_proof));
if options.resizeWidth.map_or(false, |w| w == 0) {
p.reject_error(Error::InvalidState);