From ca5f6d6bd6f575cb784b7db7586006df599daf42 Mon Sep 17 00:00:00 2001 From: Luca Rinaldi Date: Thu, 4 Jul 2024 12:45:26 +0200 Subject: [PATCH] chore: remove unused property on RegexpMatcher (#164) Signed-off-by: lucarin91 --- matcher_regexp.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/matcher_regexp.go b/matcher_regexp.go index 7de249f..598c493 100644 --- a/matcher_regexp.go +++ b/matcher_regexp.go @@ -44,8 +44,6 @@ func NewRegexpMatcher(size int) *RegexpMatcher { type RegexpMatcher struct { *lru.Cache - - C map[string]*regexp2.Regexp } func (m *RegexpMatcher) get(pattern string) *regexp2.Regexp {