Skip to content

Commit ca33f4f

Browse files
committed
Improved code format (final) and added isCommentsDisabled method
1 parent f324772 commit ca33f4f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/comments/CommentsExtractor.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
public abstract class CommentsExtractor extends ListExtractor<CommentsInfoItem> {
1111

12-
public CommentsExtractor(StreamingService service, ListLinkHandler uiHandler) {
12+
public CommentsExtractor(final StreamingService service, final ListLinkHandler uiHandler) {
1313
super(service, uiHandler);
14-
// TODO Auto-generated constructor stub
14+
}
15+
16+
public boolean isCommentsDisabled() {
17+
return false;
1518
}
1619

1720
@Nonnull

0 commit comments

Comments
 (0)