mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 05:43:47 +07:00
11 lines
184 B
Java
11 lines
184 B
Java
// "Annotate variable 'a' as @NonNls" "true"
|
|
|
|
import org.jetbrains.annotations.NonNls;
|
|
|
|
class Foo {
|
|
public boolean doTest() {
|
|
@NonNls String a;
|
|
return "test".equals(a)
|
|
}
|
|
}
|