From d086889869b3ce4c01643cebfecf8a22d9ab3596 Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Sat, 17 Feb 2024 21:31:20 -0800 Subject: [PATCH] fix some lints --- internal/css_parser/css_parser.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/css_parser/css_parser.go b/internal/css_parser/css_parser.go index f39cfdd22d1..6fbcbeea011 100644 --- a/internal/css_parser/css_parser.go +++ b/internal/css_parser/css_parser.go @@ -586,10 +586,6 @@ func (p *parser) parseListOfDeclarations(opts listOfDeclarationsOpts) (list []cs } func (p *parser) mangleRules(rules []css_ast.Rule, isTopLevel bool) []css_ast.Rule { - type hashEntry struct { - indices []uint32 - } - // Remove empty rules mangledRules := make([]css_ast.Rule, 0, len(rules)) var prevNonComment css_ast.R @@ -728,7 +724,6 @@ type callEntry struct { } type DuplicateRuleRemover struct { - symbols ast.SymbolMap entries map[uint32]hashEntry calls []callEntry check css_ast.CrossFileEqualityCheck