IDEA-82647 Don't swap subject and description in "Show Affected Paths" dialog.

This commit is contained in:
Kirill Likhodedov
2012-03-13 13:35:38 +04:00
parent caf03670f8
commit 333d1b7b39
@@ -404,7 +404,7 @@ public class GitChangeUtils {
fullComment = commentSubject;
}
else {
fullComment = commentBody + "\n\n" + commentSubject;
fullComment = commentSubject + "\n" + commentBody;
}
GitRevisionNumber thisRevision = new GitRevisionNumber(revisionNumber, commitDate);