mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 23:52:27 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
9 lines
175 B
Java
9 lines
175 B
Java
/*
|
|
Value is always true (a == a; line#7)
|
|
Comparison arguments are the same (==; line#7)
|
|
*/
|
|
class Test {
|
|
void test(int a) {
|
|
if (<selection>a == a</selection>) {}
|
|
}
|
|
} |