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
12 lines
185 B
Java
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();
|
|
}
|
|
} |