formatLinkedIssueListWithTitle formats a comma-separated list of linked issue references with each title appended after the reference.
(issues []api.LinkedIssue)
| 366 | // formatLinkedIssueListWithTitle formats a comma-separated list of linked |
| 367 | // issue references with each title appended after the reference. |
| 368 | func formatLinkedIssueListWithTitle(issues []api.LinkedIssue) string { |
| 369 | return joinLinkedIssues(issues, true) |
| 370 | } |
| 371 | |
| 372 | func joinLinkedIssues(issues []api.LinkedIssue, withTitle bool) string { |
| 373 | if len(issues) == 0 { |
no test coverage detected