(a []string, b map[string]bool)
| 263 | } |
| 264 | |
| 265 | func disjoint(a []string, b map[string]bool) bool { |
| 266 | for _, item := range a { |
| 267 | if _, ok := b[strings.ToLower(item)]; ok { |
| 268 | return false |
| 269 | } |
| 270 | } |
| 271 | return true |
| 272 | } |
| 273 | |
| 274 | func extractStatement(statement string, backupItem *storepb.PriorBackupDetail_Item) (string, error) { |
| 275 | if backupItem == nil { |
no outgoing calls
no test coverage detected