[doc] Update release notes, refs #3266
This commit is contained in:
@ -20,6 +20,7 @@ This is a {{ site.pmd.release_type }} release.
|
||||
* [#3230](https://github.com/pmd/pmd/issues/3230): \[doc] Remove "Edit me" button for language index pages
|
||||
* java-codestyle
|
||||
* [#2655](https://github.com/pmd/pmd/issues/2655): \[java] UnnecessaryImport false positive for on-demand imports
|
||||
* [#3266](https://github.com/pmd/pmd/pull/3266): \[java] LocalVariableCouldBeFinal: false negatives with interfaces, anon classes
|
||||
|
||||
### API Changes
|
||||
|
||||
|
@ -213,7 +213,7 @@ public class Foo {
|
||||
</test-code>
|
||||
|
||||
<test-code>
|
||||
<description>False negative with default methods in interfaces</description>
|
||||
<description>#3266 False negative with default methods in interfaces</description>
|
||||
<expected-problems>1</expected-problems>
|
||||
<expected-linenumbers>3</expected-linenumbers>
|
||||
<code><![CDATA[
|
||||
@ -227,7 +227,7 @@ public interface InterfaceWithDefaultMethod {
|
||||
</test-code>
|
||||
|
||||
<test-code>
|
||||
<description>False negative with class inside interface</description>
|
||||
<description>#3266 False negative with class inside interface</description>
|
||||
<expected-problems>1</expected-problems>
|
||||
<expected-linenumbers>4</expected-linenumbers>
|
||||
<code><![CDATA[
|
||||
@ -243,7 +243,7 @@ public interface InterfaceWithClass {
|
||||
</test-code>
|
||||
|
||||
<test-code>
|
||||
<description>False negative with anonymous classes</description>
|
||||
<description>#3266 False negative with anonymous classes</description>
|
||||
<expected-problems>2</expected-problems>
|
||||
<expected-linenumbers>5,11</expected-linenumbers>
|
||||
<code><![CDATA[
|
||||
@ -266,7 +266,7 @@ public class ClassWithAnon {
|
||||
</test-code>
|
||||
|
||||
<test-code>
|
||||
<description>False negative with lambdas</description>
|
||||
<description>#3266 False negative with lambdas</description>
|
||||
<expected-problems>1</expected-problems>
|
||||
<expected-linenumbers>4</expected-linenumbers>
|
||||
<code><![CDATA[
|
||||
|
Reference in New Issue
Block a user