mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 09:36:56 +07:00
Fixes IDEA-272250 False-positive warning when overridden method has a nullability type annotation GitOrigin-RevId: a05ae5bdad95e475ac8a2af7736bcafc0e008364
11 lines
147 B
Java
11 lines
147 B
Java
import typeUse.*;
|
|
|
|
abstract class A {
|
|
class B {}
|
|
|
|
@NotNull abstract A.B get();
|
|
}
|
|
abstract class C extends A {
|
|
abstract A.@NotNull B get();
|
|
}
|