0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -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 GitHub
parent 593801e265
commit d0a7305676
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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