Updated to JDOM 1.1.1, added tab to whitespace chars.

This commit is contained in:
kebernet 2011-04-01 16:46:33 +00:00
parent 30f584df4e
commit ccf39ec730
2 changed files with 18 additions and 7 deletions

22
pom.xml
View file

@ -13,7 +13,8 @@
to convert from one format to another. The parsers can give you back Java objects that 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 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 SyndFeed object that lets you work on with the data without bothering about the
underlying format. </description> underlying format.
</description>
<url>https://rome.dev.java.net/</url> <url>https://rome.dev.java.net/</url>
<issueManagement> <issueManagement>
<url>https://rometools.jira.com/browse/ROME#selectedTab=com.atlassian.jira.plugin.system.project%3Aissues-panel</url> <url>https://rometools.jira.com/browse/ROME#selectedTab=com.atlassian.jira.plugin.system.project%3Aissues-panel</url>
@ -32,11 +33,14 @@
<mailingList> <mailingList>
<name>dev@rome.dev.java.net</name> <name>dev@rome.dev.java.net</name>
<subscribe> <subscribe>
https://rome.dev.java.net/servlets/ProjectMailingListList</subscribe> https://rome.dev.java.net/servlets/ProjectMailingListList
</subscribe>
<unsubscribe> <unsubscribe>
https://rome.dev.java.net/servlets/ProjectMailingListList</unsubscribe> https://rome.dev.java.net/servlets/ProjectMailingListList
</unsubscribe>
<archive> <archive>
https://rome.dev.java.net/servlets/SummarizeList?listName=dev</archive> https://rome.dev.java.net/servlets/SummarizeList?listName=dev
</archive>
</mailingList> </mailingList>
</mailingLists> </mailingLists>
<developers> <developers>
@ -76,11 +80,18 @@
<name>ROME Project</name> <name>ROME Project</name>
<url>http://www.rometools.org</url> <url>http://www.rometools.org</url>
</organization> </organization>
<repositories>
<repository>
<id>rome.internal</id>
<name>ROME Local repository</name>
<url>https://rometools.jira.com/svn/ROME/repo/</url>
</repository>
</repositories>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.jdom</groupId> <groupId>org.jdom</groupId>
<artifactId>jdom</artifactId> <artifactId>jdom</artifactId>
<version>1.1</version> <version>1.1.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
@ -139,6 +150,7 @@
<name>My Nexus Snapshots Repository</name> <name>My Nexus Snapshots Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository> </snapshotRepository>
</distributionManagement> </distributionManagement>
<build> <build>
<plugins> <plugins>

View file

@ -56,8 +56,7 @@ public class XmlFixerReader extends Reader {
hasContent = false; hasContent = false;
} }
else else
//TODO lorenzo.sm: Pending to review. c=='\r' condition added. if (c==' ' || c=='\n' || c=='\r' || c=='\t') {
if (c==' ' || c=='\n' || c=='\r') {
loop = true; loop = true;
} }
else else