Merge branch 'pr-1994'
This commit is contained in:
@ -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 %}
|
||||
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user