mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
171 B
Java
14 lines
171 B
Java
// "Surround annotation parameter value with quotes" "false"
|
|
class X {
|
|
|
|
@interface MyAnnotation {
|
|
String c();
|
|
}
|
|
|
|
@MyAnnotation(tr<caret>ue)
|
|
void m() {
|
|
|
|
}
|
|
|
|
}
|