From 38f65fe0b12f6beff77a8cac6abab40b74ff7f82 Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Mon, 7 Oct 2024 22:48:15 +0200 Subject: [PATCH] fix:#57 removed unused struct --- .../data-manager/service/fetch/v1/htmlParsingFunctions.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/services/data-manager/service/fetch/v1/htmlParsingFunctions.go b/services/data-manager/service/fetch/v1/htmlParsingFunctions.go index ac409aa..1268810 100644 --- a/services/data-manager/service/fetch/v1/htmlParsingFunctions.go +++ b/services/data-manager/service/fetch/v1/htmlParsingFunctions.go @@ -71,11 +71,6 @@ func hasClassAttribute(node *html.Node, classValue string) bool { return false } -type dayTable struct { - day string - table []*html.Node -} - // Get Tables with days func getEventTables(node *html.Node, dayLabels []string) map[string][]*html.Node { // Create a map to store the tables with the corresponding day from the dayLabels