mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
13 lines
262 B
Java
13 lines
262 B
Java
// "Suppress for field" "false"
|
|
/** @noinspection ALL*/
|
|
class a {
|
|
static private String <caret>mm = "00";
|
|
// The "Convert to local" inspection should be reported here if not suppressed
|
|
|
|
static void test() {
|
|
mm = "1";
|
|
if(mm == "1") {
|
|
mm = "2";
|
|
}
|
|
}
|
|
} |