fix: tasks being incorrectly marked as internal

This commit is contained in:
Pete Davison
2023-02-10 17:02:11 +00:00
parent e23dacd6d4
commit 74f69a21cd
3 changed files with 5 additions and 14 deletions

View File

@@ -61,14 +61,6 @@ func (tfs *IncludedTaskfiles) Len() int {
return len(tfs.Keys)
}
// Merge merges the given IncludedTaskfiles into the caller one
func (tfs *IncludedTaskfiles) Merge(other *IncludedTaskfiles) {
_ = other.Range(func(key string, value IncludedTaskfile) error {
tfs.Set(key, value)
return nil
})
}
// Set sets a value to a given key
func (tfs *IncludedTaskfiles) Set(key string, includedTaskfile IncludedTaskfile) {
if tfs.Mapping == nil {