[lombok] IDEA-255688 Get rid of LombokHighlightErrorFilter for "Method call can produce NPE"

Used in case of lombok lazy Getter

GitOrigin-RevId: acdb7e17facdf763a5b824ed945c69fc18646563
This commit is contained in:
Michail Plushnikov
2023-12-03 20:14:56 +01:00
committed by intellij-monorepo-bot
parent b2853a3590
commit 735b2abf1d
8 changed files with 72 additions and 129 deletions

View File

@@ -25,7 +25,7 @@ public class GetterLazyInvocationProduceNPE {
@Getter(lazy = true)
private final String barString = bar.sayHello();
//with warining!
//with warning!
@Getter
private final String carString = car.<warning descr="Method invocation 'sayHello' will produce 'NullPointerException'">sayHello</warning>();