Improved code format (final) and added `isCommentsDisabled
` method
This commit is contained in:
parent
f324772254
commit
ca33f4f60b
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue