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/url/lib.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'ext/url') diff --git a/ext/url/lib.rs b/ext/url/lib.rs index a82b3e702..4187b7664 100644 --- a/ext/url/lib.rs +++ b/ext/url/lib.rs @@ -184,7 +184,6 @@ pub fn op_url_parse_search_params( pub fn op_url_stringify_search_params( _state: &mut deno_core::OpState, args: Vec<(String, String)>, - _: (), ) -> Result { let search = form_urlencoded::Serializer::new(String::new()) .extend_pairs(args) -- cgit v1.2.3