Fix Javadoc generation

This commit is contained in:
TobiGr 2021-06-08 09:26:01 +02:00
parent 98825a2f01
commit 80d3052033
3 changed files with 13 additions and 7 deletions

View file

@ -12,8 +12,8 @@ import javax.annotation.Nullable;
public interface CommentsInfoItemExtractor extends InfoItemExtractor {
/**
* Return the like count of the comment, or -1 if it's unavailable<br/>
*
* Return the like count of the comment, or -1 if it's unavailable<
* <br>
* NOTE: Currently only implemented for YT {@link YoutubeCommentsInfoItemExtractor#getLikeCount()}
* with limitations (only approximate like count is returned)
*
@ -24,8 +24,8 @@ public interface CommentsInfoItemExtractor extends InfoItemExtractor {
}
/**
* The unmodified like count given by the service<br/>
*
* The unmodified like count given by the service
* <br>
* It may be language dependent
*/
default String getTextualLikeCount() throws ParsingException {

View file

@ -72,10 +72,10 @@ public class YoutubeCommentsInfoItemExtractor implements CommentsInfoItemExtract
}
/**
* @implNote The method is parsing internally a localized string.<br/>
* @implNote The method is parsing internally a localized string.<br>
* <ul>
* <li>
* More than >1k likes will result in an inaccurate number
* More than 1k likes will result in an inaccurate number
* </li>
* <li>
* This will fail for other languages than English.
@ -84,7 +84,7 @@ public class YoutubeCommentsInfoItemExtractor implements CommentsInfoItemExtract
* everything will work fine.
* </li>
* </ul>
* <br/>
* <br>
* Consider using {@link #getTextualLikeCount()}
*/
@Override