mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
222 B
Java
13 lines
222 B
Java
class Test {
|
|
public boolean isConsideredFinal(int cl) {
|
|
return haveSeenAllExp<caret>ectedAtCl(cl);
|
|
}
|
|
|
|
private boolean haveSeenAllExpectedAtCl(int cl) {
|
|
return cl == cl();
|
|
}
|
|
|
|
int cl() {
|
|
return 0;
|
|
}
|
|
} |