class Pronto::Formatter::GitFormatter
def consolidate_comments(comments)
def consolidate_comments(comments) comment = comments.first if comments.length > 1 joined_body = join_comments(comments) Comment.new(comment.sha, joined_body, comment.path, comment.position) else comment end end