in src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/api/CommentsRules.java [33:39]
public boolean equals(Object o) {
if (!(o instanceof CommentsRules)) {
return false;
}
CommentsRules other = (CommentsRules) o;
return blockIfUnresolvedComments == other.blockIfUnresolvedComments;
}