diff --git a/pmd/etc/changelog.txt b/pmd/etc/changelog.txt index 110ec26fba..94605cb6c1 100644 --- a/pmd/etc/changelog.txt +++ b/pmd/etc/changelog.txt @@ -22,7 +22,7 @@ Implemented RFE 1566313 - Command Line now takes minimumpriority attribute to fi PMD now requires JDK 1.4 to run - PMD will still analyze code from earlier JDKs - PMD now uses the built-in JDK 1.4 regex utils vs Jakarta ORO -- PMD now uses the JDK javax.xml APIs rather than being hardcoded to use Xalan +- PMD now uses the JDK javax.xml APIs rather than being hardcoded to use Xerces and Xalan SummaryHTML Report changes from Brent Fisher - now contains linePrefix to support source output from javadoc using "linksource" Fixed CSVRenderer - had flipped line and priority columns Fixed bug in Ant task - CSV reports were being output as text. diff --git a/pmd/src/net/sourceforge/pmd/ast/SimpleNode.java b/pmd/src/net/sourceforge/pmd/ast/SimpleNode.java index 387a28b12e..c47ef036bf 100644 --- a/pmd/src/net/sourceforge/pmd/ast/SimpleNode.java +++ b/pmd/src/net/sourceforge/pmd/ast/SimpleNode.java @@ -5,7 +5,6 @@ import net.sourceforge.pmd.dfa.IDataFlowNode; import net.sourceforge.pmd.jaxen.Attribute; import net.sourceforge.pmd.jaxen.DocumentNavigator; import net.sourceforge.pmd.symboltable.Scope; -//import org.apache.xerces.dom.DocumentImpl; import org.jaxen.BaseXPath; import org.jaxen.JaxenException; import org.w3c.dom.Document;