Merge "Add more sorting criteria for CommentInfo"

This commit is contained in:
ekempin
2016-12-01 10:10:33 +00:00
committed by Gerrit Code Review

View File

@@ -100,6 +100,8 @@ public class CommentsUtil {
.compare(a.patchSet, b.patchSet, NULLS_FIRST)
.compare(side(a), side(b))
.compare(a.line, b.line, NULLS_FIRST)
.compare(a.inReplyTo, b.inReplyTo, NULLS_FIRST)
.compare(a.message, b.message)
.compare(a.id, b.id)
.result();
}