Skip to content

Commit b3b878c

Browse files
committed
fix: remove unused struct fields to pass golangci-lint unused check
1 parent c941010 commit b3b878c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/filter/layers_37_80.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ type MultiLangAST struct{ parsers map[string]interface{} }
3939

4040
func NewMultiLangAST() *MultiLangAST { return &MultiLangAST{parsers: make(map[string]interface{})} }
4141

42-
type EmbeddingContrastive struct{ model interface{} }
42+
type EmbeddingContrastive struct{} //nolint:unused // placeholder for future model integration
4343

4444
func NewEmbeddingContrastive() *EmbeddingContrastive { return &EmbeddingContrastive{} }
4545

4646
type VariableNGram struct{ minN, maxN int }
4747

4848
func NewVariableNGram(min, max int) *VariableNGram { return &VariableNGram{minN: min, maxN: max} }
4949

50-
type TrainedEvaluatorHeads struct{ model interface{} }
50+
type TrainedEvaluatorHeads struct{} //nolint:unused // placeholder for future model integration
5151

5252
func NewTrainedEvaluatorHeads() *TrainedEvaluatorHeads { return &TrainedEvaluatorHeads{} }
5353

@@ -65,7 +65,7 @@ type SoftBudget struct{ limit, overflow int }
6565

6666
func NewSoftBudget(l, o int) *SoftBudget { return &SoftBudget{limit: l, overflow: o} }
6767

68-
type EmbeddingCompaction struct{ transformer interface{} }
68+
type EmbeddingCompaction struct{} //nolint:unused // placeholder for future transformer integration
6969

7070
func NewEmbeddingCompaction() *EmbeddingCompaction { return &EmbeddingCompaction{} }
7171

0 commit comments

Comments
 (0)