From 920896e4ca7d758a09fee349ddfe4baced6298e1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jesu=CC=81s=20Gonza=CC=81lez?= <jesusgm@vmware.com>
Date: Mon, 12 Dec 2022 18:58:40 +0100
Subject: [PATCH] chore: Remove unused code

---
 modules/wasm/mod_wasm.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/wasm/mod_wasm.c b/modules/wasm/mod_wasm.c
index d5929ff496..81197625ec 100755
--- a/modules/wasm/mod_wasm.c
+++ b/modules/wasm/mod_wasm.c
@@ -115,7 +115,6 @@ module AP_MODULE_DECLARE_DATA wasm_module;
 static void *create_dir_config(apr_pool_t *p, char *context)
 {
     x_cfg *cfg;
-    char *note;
 
     /*
      * Allocate the space for our record from the pool supplied.
@@ -132,8 +131,6 @@ static void *create_dir_config(apr_pool_t *p, char *context)
      */
     context = (context != NULL) ? context : "";
     cfg->loc = apr_pstrcat(p, "DIR(", context, ")", NULL);
-    note = apr_psprintf(p, "create_dir_config(p == %pp, context == %s)",
-                        (void*) p, context);
 
     /* creates a new Wasm config for the current context */
     int ret = wasm_config_create(cfg->loc); 
-- 
2.37.0

