Remove the unneeded changes

Co-authored-by: AudricV <74829229+AudricV@users.noreply.github.com>

Co-authored-by: AudricV <74829229+AudricV@users.noreply.github.com>
This commit is contained in:
xz-dev 2022-09-27 02:09:51 +08:00 committed by xz-dev
parent 36d1a12049
commit 22237fa1b6
No known key found for this signature in database
GPG Key ID: A20912F811313E36
2 changed files with 2 additions and 3 deletions

View File

@ -22,8 +22,8 @@ public class CommentsInfoItem extends InfoItem {
private boolean heartedByUploader;
private boolean pinned;
private int streamPosition;
@Nullable
private int replyCount;
@Nullable
private Page replies;
public static final int NO_LIKE_COUNT = -1;
@ -155,7 +155,7 @@ public class CommentsInfoItem extends InfoItem {
}
public int getReplyCount() {
return this.replyCount;
return replyCount;
}
public void setReplies(@Nullable final Page replies) {

View File

@ -110,7 +110,6 @@ public interface CommentsInfoItemExtractor extends InfoItemExtractor {
return CommentsInfoItem.NO_STREAM_POSITION;
}
/**
* The count of comment replies.
*