(tags *[]string, name string)
| 184 | } |
| 185 | |
| 186 | func checkTag(tags *[]string, name string) bool { |
| 187 | if tags == nil { |
| 188 | return true |
| 189 | } |
| 190 | for _, suffix := range *tags { |
| 191 | if strings.HasSuffix(name, suffix) { |
| 192 | return true |
| 193 | } |
| 194 | } |
| 195 | return false |
| 196 | } |
| 197 | |
| 198 | func (fc *FetchitConfig) runChangesConcurrent(ctx context.Context, mo *SingleMethodObj, changeMap map[*object.Change]string) error { |
| 199 | ch := make(chan error) |
no outgoing calls
no test coverage detected