mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
13 lines
175 B
Java
13 lines
175 B
Java
// "Add missing annotation parameter 'value'" "false"
|
|
class Test {
|
|
|
|
@MyAnnotati<caret>on
|
|
void m() {
|
|
|
|
}
|
|
|
|
@interface MyAnnotation {
|
|
String value() default "";
|
|
}
|
|
|
|
} |