···107107108108// analysisResult holds intermediate data from record analysis, shared between Run and Preview
109109type analysisResult struct {
110110- referenced map[string]bool
111111- orphanedRkeys []string // rkeys for deletion in Run
112112- orphanedDetails []OrphanedRecordDetail // details for display in Preview
113113- missingDetails []MissingRecordDetail // details for creation in Run / display in Preview
114114- usersChecked int64
110110+ referenced map[string]bool
111111+ orphanedRkeys []string // rkeys for deletion in Run
112112+ orphanedDetails []OrphanedRecordDetail // details for display in Preview
113113+ missingDetails []MissingRecordDetail // details for creation in Run / display in Preview
114114+ usersChecked int64
115115 manifestsChecked int64
116116- totalRecords int
116116+ totalRecords int
117117}
118118119119// NewGarbageCollector creates a new GC instance