mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
122 B
Plaintext
9 lines
122 B
Plaintext
class Test {
|
|
public boolean isConsideredFinal(int cl) {
|
|
return cl == cl();
|
|
}
|
|
|
|
int cl() {
|
|
return 0;
|
|
}
|
|
} |