(s string)
| 386 | } |
| 387 | |
| 388 | func trimEnd(s string) string { |
| 389 | return strings.TrimRightFunc(s, stringutil.IsWhiteSpaceLike) |
| 390 | } |
| 391 | |
| 392 | func removeTrailingWhitespace(comments []string) []string { |
| 393 | end := len(comments) |
no outgoing calls
no test coverage detected