ChangeNoteUtil: Add missing space in error messages

Change-Id: Id22d1208c9c84e8690ae4523ed412c964671ea7d
This commit is contained in:
Dave Borowitz 2016-03-15 12:13:40 +01:00
parent 1e5ce802dd
commit e7f20a1e60
1 changed files with 2 additions and 2 deletions

View File

@ -442,11 +442,11 @@ public class ChangeNoteUtil {
for (PatchLineComment c : comments) {
PatchSet.Id currentPsId = PatchLineCommentsUtil.getCommentPsId(c);
checkArgument(psId.equals(currentPsId),
"All comments being added must all have the same PatchSet.Id. The"
"All comments being added must all have the same PatchSet.Id. The "
+ "comment below does not have the same PatchSet.Id as the others "
+ "(%s).\n%s", psId.toString(), c.toString());
checkArgument(side == c.getSide(),
"All comments being added must all have the same side. The"
"All comments being added must all have the same side. The "
+ "comment below does not have the same side as the others "
+ "(%s).\n%s", side, c.toString());
String commentFilename =