diff --git a/pom.xml b/pom.xml index 7d34c25..dce75b6 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,8 @@ to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed object that lets you work on with the data without bothering about the - underlying format. + underlying format. + https://rome.dev.java.net/ https://rometools.jira.com/browse/ROME#selectedTab=com.atlassian.jira.plugin.system.project%3Aissues-panel @@ -32,11 +33,14 @@ dev@rome.dev.java.net - https://rome.dev.java.net/servlets/ProjectMailingListList + https://rome.dev.java.net/servlets/ProjectMailingListList + - https://rome.dev.java.net/servlets/ProjectMailingListList + https://rome.dev.java.net/servlets/ProjectMailingListList + - https://rome.dev.java.net/servlets/SummarizeList?listName=dev + https://rome.dev.java.net/servlets/SummarizeList?listName=dev + @@ -76,11 +80,18 @@ ROME Project http://www.rometools.org + + + rome.internal + ROME Local repository + https://rometools.jira.com/svn/ROME/repo/ + + org.jdom jdom - 1.1 + 1.1.1 junit @@ -139,6 +150,7 @@ My Nexus Snapshots Repository https://oss.sonatype.org/content/repositories/snapshots/ + diff --git a/src/main/java/com/sun/syndication/io/impl/XmlFixerReader.java b/src/main/java/com/sun/syndication/io/impl/XmlFixerReader.java index 6494b7a..88a98b2 100644 --- a/src/main/java/com/sun/syndication/io/impl/XmlFixerReader.java +++ b/src/main/java/com/sun/syndication/io/impl/XmlFixerReader.java @@ -56,8 +56,7 @@ public class XmlFixerReader extends Reader { hasContent = false; } else - //TODO lorenzo.sm: Pending to review. c=='\r' condition added. - if (c==' ' || c=='\n' || c=='\r') { + if (c==' ' || c=='\n' || c=='\r' || c=='\t') { loop = true; } else