mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 09:20:37 +07:00
GitOrigin-RevId: d66de66e71fed85b5d1f774c504d74a3963476bd
12 lines
289 B
Java
12 lines
289 B
Java
class SampleClazz {
|
|
private void handleTree(Short <warning descr="Value of parameter 'simflag' is always '(short)0'"><caret>simflag</warning>) {
|
|
foo(simflag);
|
|
}
|
|
|
|
void foo(short sss){}
|
|
|
|
|
|
public static void main(String[] args) {
|
|
new SampleClazz().handleTree((short) 0);
|
|
}
|
|
} |