(s []string)
| 1157 | } |
| 1158 | |
| 1159 | func deleteEmptyStrings(s []string) []string { |
| 1160 | var r []string |
| 1161 | for _, str := range s { |
| 1162 | if str != "" { |
| 1163 | r = append(r, str) |
| 1164 | } |
| 1165 | } |
| 1166 | return r |
| 1167 | } |
| 1168 | |
| 1169 | func gitWithoutEmptyStrings(args ...string) { |
| 1170 | argsWithoutEmptyStrings := deleteEmptyStrings(args) |
no outgoing calls
no test coverage detected