mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -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]
|
||||
pub async fn op_void_async(_state: Rc<RefCell<OpState>>) -> Result<(), Error> {
|
||||
pub async fn op_void_async() -> Result<(), Error> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue