From 88d0f01948b68f4a4d87e02a5138e94ac0a6eaea Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Mon, 14 Mar 2022 23:38:53 +0100 Subject: feat(ops): custom arity (#13949) Also cleanup & drop ignored wildcard op-args --- ext/webstorage/lib.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'ext/webstorage') diff --git a/ext/webstorage/lib.rs b/ext/webstorage/lib.rs index c51301683..8569fece6 100644 --- a/ext/webstorage/lib.rs +++ b/ext/webstorage/lib.rs @@ -104,7 +104,6 @@ fn get_webstorage( pub fn op_webstorage_length( state: &mut OpState, persistent: bool, - _: (), ) -> Result { let conn = get_webstorage(state, persistent)?; @@ -201,7 +200,6 @@ pub fn op_webstorage_remove( pub fn op_webstorage_clear( state: &mut OpState, persistent: bool, - _: (), ) -> Result<(), AnyError> { let conn = get_webstorage(state, persistent)?; @@ -215,7 +213,6 @@ pub fn op_webstorage_clear( pub fn op_webstorage_iterate_keys( state: &mut OpState, persistent: bool, - _: (), ) -> Result, AnyError> { let conn = get_webstorage(state, persistent)?; -- cgit v1.2.3