Improved code format (final) and added ``isCommentsDisabled`` method

This commit is contained in:
litetex 2021-06-13 17:49:22 +02:00
parent f324772254
commit ca33f4f60b
1 changed files with 5 additions and 2 deletions

View File

@ -9,9 +9,12 @@ import javax.annotation.Nonnull;
public abstract class CommentsExtractor extends ListExtractor<CommentsInfoItem> {
public CommentsExtractor(StreamingService service, ListLinkHandler uiHandler) {
public CommentsExtractor(final StreamingService service, final ListLinkHandler uiHandler) {
super(service, uiHandler);
// TODO Auto-generated constructor stub
}
public boolean isCommentsDisabled() {
return false;
}
@Nonnull