@@ -42,7 +42,7 @@ func Manifests(oldIndex, newIndex map[string]*manifest.MappingResult, options *O
42
42
}
43
43
44
44
func ManifestsOwnership (oldIndex , newIndex map [string ]* manifest.MappingResult , newOwnedReleases map [string ]OwnershipDiff , options * Options , to io.Writer ) bool {
45
- seenAnyChanges , report , err := generateReport (oldIndex , newIndex , nil , options , to )
45
+ seenAnyChanges , report , err := generateReport (oldIndex , newIndex , nil , options )
46
46
if err != nil {
47
47
panic (err )
48
48
}
@@ -53,12 +53,12 @@ func ManifestsOwnership(oldIndex, newIndex map[string]*manifest.MappingResult, n
53
53
}
54
54
55
55
func ManifestReport (oldIndex , newIndex map [string ]* manifest.MappingResult , options * Options , to io.Writer ) (* Report , error ) {
56
- _ , report , err := generateReport (oldIndex , newIndex , nil , options , to )
56
+ _ , report , err := generateReport (oldIndex , newIndex , nil , options )
57
57
58
58
return report , err
59
59
}
60
60
61
- func generateReport (oldIndex , newIndex map [string ]* manifest.MappingResult , newOwnedReleases map [string ]OwnershipDiff , options * Options , to io. Writer ) (bool , * Report , error ) {
61
+ func generateReport (oldIndex , newIndex map [string ]* manifest.MappingResult , newOwnedReleases map [string ]OwnershipDiff , options * Options ) (bool , * Report , error ) {
62
62
report := Report {}
63
63
report .setupReportFormat (options .OutputFormat )
64
64
var possiblyRemoved []string
0 commit comments