Skip to content

Commit f8d2794

Browse files
committed
Fix javadoc errors. (warnings still not fixed)
1 parent d84a64d commit f8d2794

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

src/main/java/org/schabi/newpipe/extractor/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public abstract class Info implements Serializable {
1010
public final int service_id;
1111
/**
1212
* Id of this Info object <br>
13-
* e.g. Youtube: https://www.youtube.com/watch?v=RER5qCTzZ7 > RER5qCTzZ7
13+
* e.g. Youtube: https://www.youtube.com/watch?v=RER5qCTzZ7 &gt; RER5qCTzZ7
1414
*/
1515
public final String id;
1616
public final String url;

src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudParsingHelper.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public static String toDateString(String time) throws ParsingException {
6363
}
6464

6565
/**
66-
* Call the endpoint "/resolve" of the api.<br/>
66+
* Call the endpoint "/resolve" of the api.<p>
67+
*
6768
* See https://developers.soundcloud.com/docs/api/reference#resolve
6869
*/
6970
public static JsonObject resolveFor(String url) throws IOException, ReCaptchaException, ParsingException {
@@ -79,7 +80,7 @@ public static JsonObject resolveFor(String url) throws IOException, ReCaptchaExc
7980
}
8081

8182
/**
82-
* Fetch the embed player with the apiUrl and return the canonical url (like the permalink_url from the json api).<br/>
83+
* Fetch the embed player with the apiUrl and return the canonical url (like the permalink_url from the json api).
8384
*
8485
* @return the url resolved
8586
*/
@@ -92,7 +93,7 @@ public static String resolveUrlWithEmbedPlayer(String apiUrl) throws IOException
9293
}
9394

9495
/**
95-
* Fetch the embed player with the url and return the id (like the id from the json api).<br/>
96+
* Fetch the embed player with the url and return the id (like the id from the json api).
9697
*
9798
* @return the id resolved
9899
*/

src/main/java/org/schabi/newpipe/extractor/utils/Utils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ private Utils() {
1212

1313
/**
1414
* Remove all non-digit characters from a string.<p>
15-
* Examples:<br/>
16-
* <ul><li>1 234 567 views -> 1234567</li>
17-
* <li>$31,133.124 -> 31133124</li></ul>
15+
* Examples:<p>
16+
* <ul><li>1 234 567 views -&gt; 1234567</li>
17+
* <li>$31,133.124 -&gt; 31133124</li></ul>
1818
*
1919
* @param toRemove string to remove non-digit chars
2020
* @return a string that contains only digits

0 commit comments

Comments
 (0)