[doc] Update release notes (#4458, #4541)

This commit is contained in:
Andreas Dangel
2023-05-28 12:04:48 +02:00
parent 4dd24976ff
commit adb7fa2a18
2 changed files with 7 additions and 2 deletions

View File

@ -1483,13 +1483,13 @@ class O {
</test-code>
<test-code>
<description> [java]A false positive about RedundantFieldInitializer and @Value #4458 </description>
<description>[java] RedundantFieldInitializer: false positive with lombok's @Value #4458</description>
<expected-problems>0</expected-problems>
<code><![CDATA[
import lombok.Value;
@Value
public class Test {
String bar = null; // report a warning
String bar = null; // false positive warning
}
]]></code>
</test-code>