Static-check fixes from @lespea #1657, batch 8/n (#1710)

This commit is contained in:
John Kerl 2024-10-27 12:16:49 -04:00 committed by GitHub
parent 41649bf4f9
commit 5424e753a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 4 deletions

View file

@ -14,7 +14,6 @@ import (
type RecordWriterCSV struct {
writerOptions *cli.TWriterOptions
ofs0 byte // Go's CSV library only lets its 'Comma' be a single character
csvWriter *csv.Writer
needToPrintHeader bool
firstRecordKeys []string

View file

@ -12,7 +12,6 @@ import (
type RecordWriterMarkdown struct {
writerOptions *cli.TWriterOptions
ors string
numHeaderLinesOutput int
lastJoinedHeader string

View file

@ -116,7 +116,6 @@ func transformerFillDownParseCLI(
type TransformerFillDown struct {
// input
fillDownFieldNames []string
doAll bool
onlyIfAbsent bool
// state

View file

@ -260,7 +260,6 @@ type TransformerStep struct {
// STATE
// Scratch space used per-record
valueFieldValues []mlrval.Mlrval
// Map from group-by field names to value-field names to stepper name to stepper object. See
// the Transform method below for more details.
groups map[string]map[string]map[string]tStepper