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