mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
cleanup(core): drop op_void_async's state arg (#14045)
This commit is contained in:
parent
25fdecff6a
commit
9ff62005cf
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ pub fn op_void_sync() -> Result<(), Error> {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[op]
|
#[op]
|
||||||
pub async fn op_void_async(_state: Rc<RefCell<OpState>>) -> Result<(), Error> {
|
pub async fn op_void_async() -> Result<(), Error> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue