Files
Bas Leijdekkersandintellij-monorepo-bot 3944be5659 Java: quick-fix should not make code uncompilable (IDEA-290348)
for "Method parameter always has the same value" inspection

GitOrigin-RevId: 114ab7d07d50298101555f3203b5161deea17816
2023-05-12 00:51:56 +00:00

12 lines
185 B
Java

class SampleClazz {
private void handleTree() {
foo((short) 0);
}
void foo(short sss){}
public static void main(String[] args) {
new SampleClazz().handleTree();
}
}