mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Fixes IDEA-344453 Intellij should not try to initialize an Optional var with null GitOrigin-RevId: 8097988bf1335a282138e8d09e350c3a5f65204d
13 lines
235 B
Java
13 lines
235 B
Java
@interface ff{
|
|
String f() default "";
|
|
}
|
|
class d implements ff {
|
|
public String f() {
|
|
<caret><selection>return "";</selection>
|
|
}
|
|
|
|
public Class<? extends Annotation> annotationType() {
|
|
return null;
|
|
}
|
|
}
|