Merge branch 'pr-2865' into master

[java] (doc) Update ExcessiveImports example code for clarity #2865
This commit is contained in:
Andreas Dangel
2020-10-23 09:00:52 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -63,6 +63,7 @@ This is a {{ site.pmd.release_type }} release.
* [#2829](https://github.com/pmd/pmd/pull/2829): \[doc] Small correction in pmd\_report\_formats.md - [Gustavo Krieger](https://github.com/gustavopcassol)
* [#2834](https://github.com/pmd/pmd/pull/2834): \[vf] Allow attributes with dot in Visualforce - [rmohan20](https://github.com/rmohan20)
* [#2842](https://github.com/pmd/pmd/pull/2842): \[core] Bump antlr4 from 4.7 to 4.7.2 - [Adrien Lecharpentier](https://github.com/alecharp)
* [#2865](https://github.com/pmd/pmd/pull/2865): \[java] (doc) Update ExcessiveImports example code for clarity - [Gustavo Krieger](https://github.com/gustavopcassol)
{% endtocmaker %}

View File

@ -632,7 +632,7 @@ user-specified threshold.
<![CDATA[
import blah.blah.Baz;
import blah.blah.Bif;
// 18 others from the same package elided
// 28 others from the same package elided
public class Foo {
public void doWork() {}
}