mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
9 lines
138 B
Java
9 lines
138 B
Java
// "Annotate field 'field' as @NonNls" "true"
|
|
|
|
import org.jetbrains.annotations.NonNls;
|
|
|
|
class Foo {
|
|
@NonNls
|
|
String field = "text";
|
|
}
|