mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-13 05:40:34 +05:30
Fix javadoc errors. (warnings still not fixed)
This commit is contained in:
parent
d84a64debd
commit
f8d2794a1d
@ -10,7 +10,7 @@ public abstract class Info implements Serializable {
|
||||
public final int service_id;
|
||||
/**
|
||||
* Id of this Info object <br>
|
||||
* e.g. Youtube: https://www.youtube.com/watch?v=RER5qCTzZ7 > RER5qCTzZ7
|
||||
* e.g. Youtube: https://www.youtube.com/watch?v=RER5qCTzZ7 > RER5qCTzZ7
|
||||
*/
|
||||
public final String id;
|
||||
public final String url;
|
||||
|
@ -63,7 +63,8 @@ public class SoundcloudParsingHelper {
|
||||
}
|
||||
|
||||
/**
|
||||
* Call the endpoint "/resolve" of the api.<br/>
|
||||
* Call the endpoint "/resolve" of the api.<p>
|
||||
*
|
||||
* See https://developers.soundcloud.com/docs/api/reference#resolve
|
||||
*/
|
||||
public static JsonObject resolveFor(String url) throws IOException, ReCaptchaException, ParsingException {
|
||||
@ -79,7 +80,7 @@ public class SoundcloudParsingHelper {
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the embed player with the apiUrl and return the canonical url (like the permalink_url from the json api).<br/>
|
||||
* Fetch the embed player with the apiUrl and return the canonical url (like the permalink_url from the json api).
|
||||
*
|
||||
* @return the url resolved
|
||||
*/
|
||||
@ -92,7 +93,7 @@ public class SoundcloudParsingHelper {
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the embed player with the url and return the id (like the id from the json api).<br/>
|
||||
* Fetch the embed player with the url and return the id (like the id from the json api).
|
||||
*
|
||||
* @return the id resolved
|
||||
*/
|
||||
|
@ -12,9 +12,9 @@ public class Utils {
|
||||
|
||||
/**
|
||||
* Remove all non-digit characters from a string.<p>
|
||||
* Examples:<br/>
|
||||
* <ul><li>1 234 567 views -> 1234567</li>
|
||||
* <li>$31,133.124 -> 31133124</li></ul>
|
||||
* Examples:<p>
|
||||
* <ul><li>1 234 567 views -> 1234567</li>
|
||||
* <li>$31,133.124 -> 31133124</li></ul>
|
||||
*
|
||||
* @param toRemove string to remove non-digit chars
|
||||
* @return a string that contains only digits
|
||||
|
Loading…
Reference in New Issue
Block a user