mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
[java-dfa] Avoid marking annotation method results as non-null
While annotation implementations created by reflection never return nulls, it's possible to create a custom annotation interface implementation and nothing stops from returning null in this case. This leads to false-positives. Fixes IDEA-269686 Wrong inspection message for nullable return value of annotation Rollback IDEA-151174 Annotation method return values are non-nullable GitOrigin-RevId: 88301bd8f5fb69e1e78efc23ecc1416c7c441473
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1136ebed29
commit
d70063b9f2
@@ -1,8 +0,0 @@
|
||||
// "Simplify 'my.value() == null' to false" "true"
|
||||
class Test {
|
||||
void some(SuppressWarnings my) {
|
||||
if (my == null) {
|
||||
System.out.println("null");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Simplify 'my.value() == null' to false" "true"
|
||||
// "Simplify 'my.value() == null' to false" "false"
|
||||
class Test {
|
||||
void some(SuppressWarnings my) {
|
||||
if (my == null || my.value() =<caret>= null) {
|
||||
|
||||
Reference in New Issue
Block a user