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: 9d6927df3705f71f671852818093c4414d3a4a8d
12 lines
110 B
Java
12 lines
110 B
Java
class Vararg {
|
|
|
|
void x() {
|
|
for (byte b : new byte[]{(byte) 1}) {
|
|
|
|
}
|
|
}
|
|
|
|
void y() {
|
|
x();
|
|
}
|
|
} |