diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml
index 02a370b7e..140d3c33f 100644
--- a/config/checkstyle/checkstyle.xml
+++ b/config/checkstyle/checkstyle.xml
@@ -91,6 +91,9 @@
+
+
+
diff --git a/core/src/main/java/de/danoeh/antennapod/core/storage/DBReader.java b/core/src/main/java/de/danoeh/antennapod/core/storage/DBReader.java
index e2da40ec3..4f4ee4721 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/storage/DBReader.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/storage/DBReader.java
@@ -689,7 +689,7 @@ public final class DBReader {
* Returns credentials based on image URL
*
* @param imageUrl The URL of the image
- * @return Credentials in format ":", empty String if no authorization given
+ * @return Credentials in format "Username:Password", empty String if no authorization given
*/
public static String getImageAuthentication(final String imageUrl) {
Log.d(TAG, "getImageAuthentication() called with: " + "imageUrl = [" + imageUrl + "]");
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/TimeSpeedConverter.java b/core/src/main/java/de/danoeh/antennapod/core/util/TimeSpeedConverter.java
index 5d44c14b8..bbfe528be 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/util/TimeSpeedConverter.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/util/TimeSpeedConverter.java
@@ -10,7 +10,7 @@ public class TimeSpeedConverter {
}
/** Convert millisecond according to the current playback speed
- * @param time: time to convert
+ * @param time time to convert
* @return converted time (can be < 0 if time is < 0)
*/
public int convert(int time) {
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/syndication/HtmlToPlainText.java b/core/src/main/java/de/danoeh/antennapod/core/util/syndication/HtmlToPlainText.java
index 3550f28c6..84d98a905 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/util/syndication/HtmlToPlainText.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/util/syndication/HtmlToPlainText.java
@@ -57,7 +57,7 @@ public class HtmlToPlainText {
* Use this method to determine if a given text has any HTML tag
*
* @param str String to be tested for presence of HTML content
- * @return True if text contains any HTML tagsFalse is no HTML tag is found
+ * @return True if text contains any HTML tags
False is no HTML tag is found
*/
private static boolean isHtml(String str) {
final String HTML_TAG_PATTERN = "<(\"[^\"]*\"|'[^']*'|[^'\">])*>";