ChangeRevisionNote: Remove redundant initialization of variable to null

Change-Id: I92f8926ce390293c8a61699475a88b30660e1675
This commit is contained in:
David Pursehouse
2016-10-03 13:31:32 +09:00
parent 1611b43b3c
commit 26abcf54b3

View File

@@ -44,7 +44,7 @@ class ChangeRevisionNote extends RevisionNote<Comment> {
private final ChangeNoteUtil noteUtil;
private final Change.Id changeId;
private final PatchLineComment.Status status;
private String pushCert = null;
private String pushCert;
ChangeRevisionNote(ChangeNoteUtil noteUtil, Change.Id changeId,
ObjectReader reader, ObjectId noteId, PatchLineComment.Status status) {