(oldIndex, newIndex map[string]*manifest.MappingResult, options *Options)
| 61 | } |
| 62 | |
| 63 | func ManifestReport(oldIndex, newIndex map[string]*manifest.MappingResult, options *Options) (*Report, error) { |
| 64 | _, report, err := generateReport(oldIndex, newIndex, nil, options) |
| 65 | |
| 66 | return report, err |
| 67 | } |
| 68 | |
| 69 | func generateReport(oldIndex, newIndex map[string]*manifest.MappingResult, newOwnedReleases map[string]OwnershipDiff, options *Options) (bool, *Report, error) { |
| 70 | report := Report{findRenames: options.FindRenames} |
nothing calls this directly
no test coverage detected