This commit is contained in:
Evan Jarrett
2026-02-11 21:15:12 -06:00
parent ac32a98104
commit 8d39daa09d
+6 -6
View File
@@ -107,13 +107,13 @@ type manifestInfo struct {
// analysisResult holds intermediate data from record analysis, shared between Run and Preview
type analysisResult struct {
referenced map[string]bool
orphanedRkeys []string // rkeys for deletion in Run
orphanedDetails []OrphanedRecordDetail // details for display in Preview
missingDetails []MissingRecordDetail // details for creation in Run / display in Preview
usersChecked int64
referenced map[string]bool
orphanedRkeys []string // rkeys for deletion in Run
orphanedDetails []OrphanedRecordDetail // details for display in Preview
missingDetails []MissingRecordDetail // details for creation in Run / display in Preview
usersChecked int64
manifestsChecked int64
totalRecords int
totalRecords int
}
// NewGarbageCollector creates a new GC instance