Add the branch name to the beginning of the subject line for outgoing emails.

Bug: GERRIT-154
This commit is contained in:
Jeff Hamilton
2009-04-28 16:44:05 -07:00
parent e89544b1fe
commit 2c8dd4ac0b

View File

@@ -652,6 +652,9 @@ public class ChangeMail {
private void initSubject() throws MessagingException {
final StringBuilder subj = new StringBuilder();
subj.append("[");
subj.append(change.getDest().getShortName());
subj.append("] ");
subj.append("Change ");
subj.append(change.getChangeId());
subj.append(": (");