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