Use ObjectId instead of RevId throughout NoteDb comment code

See Iff5644e2 context on removing RevId usages.

Change-Id: Ic586756132ace9d4d4c651294e4a1cf56cbb0536
This commit is contained in:
Dave Borowitz
2019-04-23 13:17:45 -07:00
parent aee58d9905
commit f2f03e989c
28 changed files with 230 additions and 228 deletions

View File

@@ -399,7 +399,7 @@ public class MailProcessor {
comment.range = mailComment.getInReplyTo().range;
comment.unresolved = mailComment.getInReplyTo().unresolved;
}
CommentsUtil.setCommentRevId(comment, patchListCache, ctx.getChange(), patchSetForComment);
CommentsUtil.setCommentCommitId(comment, patchListCache, ctx.getChange(), patchSetForComment);
return comment;
}
}