mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
for "Method parameter always has the same value" inspection GitOrigin-RevId: 114ab7d07d50298101555f3203b5161deea17816
10 lines
102 B
Java
10 lines
102 B
Java
class LongValue {
|
|
|
|
void x() {
|
|
System.out.println(10000000000L);
|
|
}
|
|
|
|
void y() {
|
|
x();
|
|
}
|
|
} |