mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
23 lines
471 B
Java
23 lines
471 B
Java
public class Test {
|
|
|
|
void test() {
|
|
if (<selection>getSize1() < getLimit1() && getCondition1()</selection>) {
|
|
System.out.println();
|
|
}
|
|
if (getSize2() < getLimit2() && getCondition1()) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
int getSize1() {
|
|
return 42;
|
|
}
|
|
|
|
int getSize2() { return 42; }
|
|
|
|
int getLimit1() { return 42; }
|
|
|
|
int getLimit2() { return 42; }
|
|
|
|
boolean getCondition1 { return true; }
|
|
} |