method not used anymore

This commit is contained in:
Athou
2014-10-29 08:27:04 +01:00
parent 443dea5055
commit 2061b68a2f

View File

@@ -517,19 +517,4 @@ public class FeedUtils {
}
}
}
public static String parseForImageUrl(byte[] xml) {
String xmlString = null;
try {
String encoding = FeedUtils.guessEncoding(xml);
xmlString = FeedUtils.trimInvalidXmlCharacters(new String(xml, encoding));
/*if (xmlString == null) {
throw new FeedException("Input string is null for url " + feedUrl);
}*/
xmlString = FeedUtils.replaceHtmlEntitiesWithNumericEntities(xmlString);
} catch (Exception e) {
}
return xmlString;
}
}