(files map[string]*shared.GistFile)
| 304 | } |
| 305 | |
| 306 | func detectEmptyFiles(files map[string]*shared.GistFile) bool { |
| 307 | for _, file := range files { |
| 308 | if strings.TrimSpace(file.Content) == "" { |
| 309 | return true |
| 310 | } |
| 311 | } |
| 312 | return false |
| 313 | } |
no outgoing calls