Merge branch 'pr-1994'

This commit is contained in:
Juan Martín Sotuyo Dodero
2019-09-02 14:44:51 -03:00
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@ about the usage and features of the rule designer.
### Fixed Issues
* all
* [#1465](https://github.com/pmd/pmd/issues/1465): \[core] Stylesheet pmd-report.xslt fails to display filepath if 'java' in path
* [#1983](https://github.com/pmd/pmd/pull/1983): \[core] Avoid crashes with analysis cache when classpath references non-existing directories
* [#1990](https://github.com/pmd/pmd/pull/1990): \[core] Incremental analysis mixes XPath rule violations
* java-bestpractices
@ -70,6 +71,7 @@ about the usage and features of the rule designer.
* [#1970](https://github.com/pmd/pmd/pull/1970): \[java] DoubleBraceInitialization: Fix example - [Tobias Weimer](https://github.com/tweimer)
* [#1971](https://github.com/pmd/pmd/pull/1971): \[java] 1862 - Message Digest should not be used as class field - [AnthonyKot](https://github.com/AnthonyKot)
* [#1994](https://github.com/pmd/pmd/pull/1994): \[core] Resolve pmd-report failure when java folder in filepath - [Amish Shah](https://github.com/shahamish150294)
{% endtocmaker %}

View File

@ -50,7 +50,7 @@
<xsl:for-each select="file">
<xsl:sort data-type="number" order="descending" select="count(violation)"/>
<xsl:variable name="filename" select="@name"/>
<H3><xsl:value-of disable-output-escaping="yes" select="substring-before(translate(@name,'/','.'),'.java')"/></H3>
<H3><xsl:value-of disable-output-escaping="yes" select="translate(substring-before(@name,'.java'),'/','.')"/></H3>
<table border="0" width="100%" class="details">
<tr>
<th>Begin Line</th>