diff --git a/WordPressUtils/src/main/java/org/wordpress/android/util/HtmlUtils.java b/WordPressUtils/src/main/java/org/wordpress/android/util/HtmlUtils.java
index 0af22b02b646..b5319372a234 100644
--- a/WordPressUtils/src/main/java/org/wordpress/android/util/HtmlUtils.java
+++ b/WordPressUtils/src/main/java/org/wordpress/android/util/HtmlUtils.java
@@ -100,10 +100,8 @@ public static String colorResToHtmlColor(Context context, int resId) {
* Remove {@code } blocks from the passed string - added to project after noticing
* comments on posts that use the "Sociable" plugin ( http://wordpress.org/plugins/sociable/ )
* may have a script block which contains {@code } followed by a CDATA section followed by {@code ,}
- * all of which will show up if we don't strip it here (example: http://cl.ly/image/0J0N3z3h1i04 )
- * first seen at http://houseofgeekery.com/2013/11/03/13-terrible-x-men-we-wont-see-in-the-movies/
+ * all of which will show up if we don't strip it here.
* @see Wordpress Sociable Plugin
- * @see First seen at
* @return String without {@code }, {@code } blocks followed by a CDATA section followed by {@code ,}
* @param text String containing script tags
*/