Legitimately suppress remaining checkstyle warnings
This commit is contained in:
parent
740a37a2de
commit
bdadcfa1f7
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE suppressions PUBLIC
|
||||||
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
||||||
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
||||||
|
<suppressions>
|
||||||
|
<!-- Use @SuppressWarnings("...") if it is possible, only use this file if it is not -->
|
||||||
|
|
||||||
|
<suppress checks="LineLength"
|
||||||
|
files="BandcampExtractorHelper.java"
|
||||||
|
lines="54"/>
|
||||||
|
|
||||||
|
<suppress checks="LineLength"
|
||||||
|
files="ItagItem.java"
|
||||||
|
lines="19"/>
|
||||||
|
</suppressions>
|
|
@ -29,6 +29,7 @@ import java.util.function.Function;
|
||||||
* Static data about various media formats support by NewPipe, eg mime type, extension
|
* Static data about various media formats support by NewPipe, eg mime type, extension
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodParamPad") // we want the media format table below to be aligned
|
||||||
public enum MediaFormat {
|
public enum MediaFormat {
|
||||||
// @formatter:off
|
// @formatter:off
|
||||||
//video and audio combined formats
|
//video and audio combined formats
|
||||||
|
|
|
@ -31,6 +31,7 @@ import java.util.List;
|
||||||
/**
|
/**
|
||||||
* A list of supported services.
|
* A list of supported services.
|
||||||
*/
|
*/
|
||||||
|
@SuppressWarnings({"ConstantName", "InnerAssignment"}) // keep unusual names and inner assignments
|
||||||
public final class ServiceList {
|
public final class ServiceList {
|
||||||
private ServiceList() {
|
private ServiceList() {
|
||||||
//no instance
|
//no instance
|
||||||
|
|
|
@ -39,8 +39,8 @@ public class YoutubeThrottlingDecrypter {
|
||||||
"b=a\\.get\\(\"n\"\\)\\)&&\\(b=(\\S+)\\(b\\),a\\.set\\(\"n\",b\\)");
|
"b=a\\.get\\(\"n\"\\)\\)&&\\(b=(\\S+)\\(b\\),a\\.set\\(\"n\",b\\)");
|
||||||
|
|
||||||
private static final Map<String, String> N_PARAMS_CACHE = new HashMap<>();
|
private static final Map<String, String> N_PARAMS_CACHE = new HashMap<>();
|
||||||
private static String FUNCTION;
|
@SuppressWarnings("StaticVariableName") private static String FUNCTION;
|
||||||
private static String FUNCTION_NAME;
|
@SuppressWarnings("StaticVariableName") private static String FUNCTION_NAME;
|
||||||
|
|
||||||
private final String functionName;
|
private final String functionName;
|
||||||
private final String function;
|
private final String function;
|
||||||
|
|
|
@ -279,6 +279,7 @@ public class YoutubeMusicSearchExtractor extends SearchExtractor {
|
||||||
return new InfoItemsPage<>(collector, getNextPageFrom(continuations));
|
return new InfoItemsPage<>(collector, getNextPageFrom(continuations));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodLength")
|
||||||
private void collectMusicStreamsFrom(final MultiInfoItemsCollector collector,
|
private void collectMusicStreamsFrom(final MultiInfoItemsCollector collector,
|
||||||
@Nonnull final JsonArray videos) {
|
@Nonnull final JsonArray videos) {
|
||||||
final TimeAgoParser timeAgoParser = getTimeAgoParser();
|
final TimeAgoParser timeAgoParser = getTimeAgoParser();
|
||||||
|
|
|
@ -81,6 +81,7 @@ public final class YoutubeStreamLinkHandlerFactory extends LinkHandlerFactory {
|
||||||
return "https://www.youtube.com/watch?v=" + id;
|
return "https://www.youtube.com/watch?v=" + id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("AvoidNestedBlocks")
|
||||||
@Override
|
@Override
|
||||||
public String getId(final String theUrlString)
|
public String getId(final String theUrlString)
|
||||||
throws ParsingException, IllegalArgumentException {
|
throws ParsingException, IllegalArgumentException {
|
||||||
|
|
|
@ -211,6 +211,7 @@ public class StreamInfo extends Info {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("MethodLength")
|
||||||
private static void extractOptionalData(final StreamInfo streamInfo,
|
private static void extractOptionalData(final StreamInfo streamInfo,
|
||||||
final StreamExtractor extractor) {
|
final StreamExtractor extractor) {
|
||||||
/* ---- optional data goes here: ---- */
|
/* ---- optional data goes here: ---- */
|
||||||
|
|
Loading…
Reference in New Issue