diff --git a/checkstyle/checkstyle.xml b/checkstyle/checkstyle.xml
index 454595bb4..3b5825a3b 100644
--- a/checkstyle/checkstyle.xml
+++ b/checkstyle/checkstyle.xml
@@ -38,6 +38,8 @@
+
+
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/MediaFormat.java b/extractor/src/main/java/org/schabi/newpipe/extractor/MediaFormat.java
index 345f75165..dc31e6f31 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/MediaFormat.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/MediaFormat.java
@@ -51,7 +51,7 @@ public enum MediaFormat {
WEBMA_OPUS(0x200, "WebM Opus", "webm", "audio/webm"),
AIFF (0x600, "AIFF", "aiff", "audio/aiff"),
/**
- * Same as {@link MediaFormat.AIFF}, just with the shorter suffix/file extension
+ * Same as {@link MediaFormat#AIFF}, just with the shorter suffix/file extension
*/
AIF (0x600, "AIFF", "aif", "audio/aiff"),
WAV (0x700, "WAV", "wav", "audio/wav"),
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/linkhandler/ReadyChannelTabListLinkHandler.java b/extractor/src/main/java/org/schabi/newpipe/extractor/linkhandler/ReadyChannelTabListLinkHandler.java
index aad50f479..33286c8f7 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/linkhandler/ReadyChannelTabListLinkHandler.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/linkhandler/ReadyChannelTabListLinkHandler.java
@@ -27,7 +27,6 @@ import java.util.List;
* return ((ReadyChannelTabListLinkHandler) linkHandler).getChannelTabExtractor(this);
* }
*
- *
*/
public class ReadyChannelTabListLinkHandler extends ListLinkHandler {
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/bandcamp/extractors/BandcampExtractorHelper.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/bandcamp/extractors/BandcampExtractorHelper.java
index e7bbac999..216c3b756 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/bandcamp/extractors/BandcampExtractorHelper.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/bandcamp/extractors/BandcampExtractorHelper.java
@@ -111,8 +111,7 @@ public final class BandcampExtractorHelper {
/**
* Fetch artist details from mobile endpoint.
- *
+ *
* More technical info.
*/
public static JsonObject getArtistDetails(final String id) throws ParsingException {
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeDashManifestCreatorsUtils.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeDashManifestCreatorsUtils.java
index 33fe3207c..5e0fb6d4c 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeDashManifestCreatorsUtils.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeDashManifestCreatorsUtils.java
@@ -119,7 +119,7 @@ public final class YoutubeDashManifestCreatorsUtils {
/**
* Generate a {@link Document} with common manifest creator elements added to it.
*
- *
+ *
* Those are:
*
* - {@code MPD} (using {@link #generateDocumentAndMpdElement(long)});
@@ -132,7 +132,7 @@ public final class YoutubeDashManifestCreatorsUtils {
* - and, for audio streams, {@code AudioChannelConfiguration} (using
* {@link #generateAudioChannelConfigurationElement(Document, ItagItem)}).
*
- *
+ *
*
* @param itagItem the {@link ItagItem} associated to the stream, which must not be null
* @param streamDuration the duration of the stream, in milliseconds
@@ -494,7 +494,6 @@ public final class YoutubeDashManifestCreatorsUtils {
* This method is only used when generating DASH manifests from OTF and post-live-DVR streams.
*
*
- *
* It will produce a {@code } element with the following attributes:
*
* - {@code startNumber}, which takes the value {@code 0} for post-live-DVR streams and
@@ -505,7 +504,6 @@ public final class YoutubeDashManifestCreatorsUtils {
*
- {@code initialization} (only for OTF streams), which is the base URL of the stream
* on which is appended {@link #SQ_0}.
*
- *
*
*
* The {@code } element needs to be generated before this element with
@@ -578,8 +576,8 @@ public final class YoutubeDashManifestCreatorsUtils {
/**
* Get the "initialization" {@link Response response} of a stream.
- *
- * This method fetches, for OTF streams and for post-live-DVR streams:
+ *
+ * This method fetches, for OTF streams and for post-live-DVR streams:
*
* - the base URL of the stream, to which are appended {@link #SQ_0} and
* {@link #RN_0} parameters, with a {@code GET} request for streaming URLs from HTML5
@@ -588,7 +586,6 @@ public final class YoutubeDashManifestCreatorsUtils {
*
- for streaming URLs from HTML5 clients, the {@link #ALR_YES} param is also added.
*
*
- *
*
* @param baseStreamingUrl the base URL of the stream, which must not be null
* @param itagItem the {@link ItagItem} of stream, which must not be null
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeOtfDashManifestCreator.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeOtfDashManifestCreator.java
index 46e84df1d..27496907c 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeOtfDashManifestCreator.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeOtfDashManifestCreator.java
@@ -53,38 +53,37 @@ public final class YoutubeOtfDashManifestCreator {
* livestreams which have just been re-encoded as normal videos.
*
*
- * This method needs:
- *
- * - the base URL of the stream (which, if you try to access to it, returns HTTP
- * status code 404 after redirects, and if the URL is valid);
- * - an {@link ItagItem}, which needs to contain the following information:
- *
- * - its type (see {@link ItagItem.ItagType}), to identify if the content is
- * an audio or a video stream;
- * - its bitrate;
- * - its mime type;
- * - its codec(s);
- * - for an audio stream: its audio channels;
- * - for a video stream: its width and height.
- *
- *
- * - the duration of the video, which will be used if the duration could not be
- * parsed from the first sequence of the stream.
- *
- *
+ * This method needs:
+ *
+ * - the base URL of the stream (which, if you try to access to it, returns HTTP
+ * status code 404 after redirects, and if the URL is valid);
+ * - an {@link ItagItem}, which needs to contain the following information:
+ *
+ * - its type (see {@link ItagItem.ItagType}), to identify if the content is
+ * an audio or a video stream;
+ * - its bitrate;
+ * - its mime type;
+ * - its codec(s);
+ * - for an audio stream: its audio channels;
+ * - for a video stream: its width and height.
+ *
+ *
+ * - the duration of the video, which will be used if the duration could not be
+ * parsed from the first sequence of the stream.
+ *
+ *
+ * In order to generate the DASH manifest, this method will:
+ *
+ * - request the first sequence of the stream (the base URL on which the first
+ * sequence parameter is appended (see {@link YoutubeDashManifestCreatorsUtils#SQ_0}))
+ * with a {@code POST} or {@code GET} request (depending of the client on which the
+ * streaming URL comes from is a mobile one ({@code POST}) or not ({@code GET}));
+ * - follow its redirection(s), if any;
+ * - save the last URL, remove the first sequence parameter;
+ * - use the information provided in the {@link ItagItem} to generate all
+ * elements of the DASH manifest.
+ *
*
- * In order to generate the DASH manifest, this method will:
- *
- * - request the first sequence of the stream (the base URL on which the first
- * sequence parameter is appended (see {@link YoutubeDashManifestCreatorsUtils#SQ_0}))
- * with a {@code POST} or {@code GET} request (depending of the client on which the
- * streaming URL comes from is a mobile one ({@code POST}) or not ({@code GET}));
- * - follow its redirection(s), if any;
- * - save the last URL, remove the first sequence parameter;
- * - use the information provided in the {@link ItagItem} to generate all
- * elements of the DASH manifest.
- *
- *
*
*
* If the duration cannot be extracted, the {@code durationSecondsFallback} value will be used
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubePostLiveStreamDvrDashManifestCreator.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubePostLiveStreamDvrDashManifestCreator.java
index 3a5a7dd23..07367e43b 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubePostLiveStreamDvrDashManifestCreator.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubePostLiveStreamDvrDashManifestCreator.java
@@ -56,25 +56,25 @@ public final class YoutubePostLiveStreamDvrDashManifestCreator {
* the time)
*
*
- * This method needs:
- *
- * - the base URL of the stream (which, if you try to access to it, returns HTTP
- * status code 404 after redirects, and if the URL is valid);
- * - an {@link ItagItem}, which needs to contain the following information:
- *
- * - its type (see {@link ItagItem.ItagType}), to identify if the content is
- * an audio or a video stream;
- * - its bitrate;
- * - its mime type;
- * - its codec(s);
- * - for an audio stream: its audio channels;
- * - for a video stream: its width and height.
- *
- *
- * - the duration of the video, which will be used if the duration could not be
- * parsed from the first sequence of the stream.
- *
- *
+ * This method needs:
+ *
+ * - the base URL of the stream (which, if you try to access to it, returns HTTP
+ * status code 404 after redirects, and if the URL is valid);
+ * - an {@link ItagItem}, which needs to contain the following information:
+ *
+ * - its type (see {@link ItagItem.ItagType}), to identify if the content is
+ * an audio or a video stream;
+ * - its bitrate;
+ * - its mime type;
+ * - its codec(s);
+ * - for an audio stream: its audio channels;
+ * - for a video stream: its width and height.
+ *
+ *
+ * - the duration of the video, which will be used if the duration could not be
+ * parsed from the first sequence of the stream.
+ *
+ *
*
* In order to generate the DASH manifest, this method will:
*
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeProgressiveDashManifestCreator.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeProgressiveDashManifestCreator.java
index 0f69895bb..88568ec42 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeProgressiveDashManifestCreator.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/dashmanifestcreators/YoutubeProgressiveDashManifestCreator.java
@@ -47,26 +47,25 @@ public final class YoutubeProgressiveDashManifestCreator {
* YouTube partner, and on videos with a large number of views.
*
*
- * This method needs:
- *
- * - the base URL of the stream (which, if you try to access to it, returns the whole
- * stream, after redirects, and if the URL is valid);
- * - an {@link ItagItem}, which needs to contain the following information:
- *
- * - its type (see {@link ItagItem.ItagType}), to identify if the content is
- * an audio or a video stream;
- * - its bitrate;
- * - its mime type;
- * - its codec(s);
- * - for an audio stream: its audio channels;
- * - for a video stream: its width and height.
- *
- *
- * - the duration of the video (parameter {@code durationSecondsFallback}), which
- * will be used as the stream duration if the duration could not be parsed from the
- * {@link ItagItem}.
- *
- *
+ * This method needs:
+ *
+ * - the base URL of the stream (which, if you try to access to it, returns the whole
+ * stream, after redirects, and if the URL is valid);
+ * - an {@link ItagItem}, which needs to contain the following information:
+ *
+ * - its type (see {@link ItagItem.ItagType}), to identify if the content is
+ * an audio or a video stream;
+ * - its bitrate;
+ * - its mime type;
+ * - its codec(s);
+ * - for an audio stream: its audio channels;
+ * - for a video stream: its width and height.
+ *
+ *
+ * - the duration of the video (parameter {@code durationSecondsFallback}), which
+ * will be used as the stream duration if the duration could not be parsed from the
+ * {@link ItagItem}.
+ *
*
* @param progressiveStreamingBaseUrl the base URL of the progressive stream, which must not be
* null
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/ItagInfo.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/ItagInfo.java
index c1ac4f5f6..22974a666 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/ItagInfo.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/ItagInfo.java
@@ -8,15 +8,13 @@ import java.io.Serializable;
/**
* Class to build easier {@link org.schabi.newpipe.extractor.stream.Stream}s for
* {@link YoutubeStreamExtractor}.
- *
- *
+ *
* It stores, per stream:
*
* - its content (the URL/the base URL of streams);
* - whether its content is the URL the content itself or the base URL;
* - its associated {@link ItagItem}.
*
- *
*/
final class ItagInfo implements Serializable {
@Nonnull
diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/stream/DeliveryMethod.java b/extractor/src/main/java/org/schabi/newpipe/extractor/stream/DeliveryMethod.java
index ed9893572..8eab0374d 100644
--- a/extractor/src/main/java/org/schabi/newpipe/extractor/stream/DeliveryMethod.java
+++ b/extractor/src/main/java/org/schabi/newpipe/extractor/stream/DeliveryMethod.java
@@ -34,8 +34,8 @@ public enum DeliveryMethod {
/**
* Used for {@link Stream}s served using the SmoothStreaming adaptive streaming method.
*
- * @see Wikipedia's page about adaptive bitrate streaming,
+ * @see
+ * Wikipedia's page about adaptive bitrate streaming,
* section Microsoft Smooth Streaming (MSS) for more information about the
* SmoothStreaming delivery method
*/