ChangeUpdate: Fix log message

Change-Id: Id2102ef6fd3978c05174b6065124abf3275a761b
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2016-09-22 16:08:31 +02:00
parent 4475f68df0
commit fa194cd075

View File

@@ -344,7 +344,7 @@ public class ChangeUpdate extends AbstractChangeUpdate {
checkArgument(c.revId != null, "RevId required for comment: %s", c); checkArgument(c.revId != null, "RevId required for comment: %s", c);
checkArgument(c.author.getId().equals(getAccountId()), checkArgument(c.author.getId().equals(getAccountId()),
"The author for the following comment does not match the author of" "The author for the following comment does not match the author of"
+ " this ChangeDraftUpdate (%s): %s", getAccountId(), c); + " this ChangeUpdate (%s): %s", getAccountId(), c);
} }