1
0
Fork 0
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:
Aaron O'Mullan 2022-03-20 14:54:38 +01:00 committed by Kitson Kelly
parent 25fdecff6a
commit 9ff62005cf

View file

@ -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(())
}