Files
Bas Leijdekkersandintellij-monorepo-bot 8744ebaf23 Java: handle vararg calls in quick-fix (IDEA-377577)
for "Method parameter always has the same value" inspection

GitOrigin-RevId: 9d6927df3705f71f671852818093c4414d3a4a8d
2025-08-14 20:44:18 +00:00

12 lines
110 B
Java

class Vararg {
void x() {
for (byte b : new byte[]{(byte) 1}) {
}
}
void y() {
x();
}
}