mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 21:55:38 +07:00
GitOrigin-RevId: 4c59710e2304288ad4465a92ec36bff633bd661e
21 lines
389 B
Java
21 lines
389 B
Java
public class Test {
|
|
|
|
void test() {
|
|
if (<selection>getSize1() < getLimit1()</selection>) {
|
|
System.out.println();
|
|
}
|
|
if (getSize2() < getLimit2()) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
int getSize1() {
|
|
return 42;
|
|
}
|
|
|
|
int getSize2() { return 42; }
|
|
|
|
int getLimit1() { return 42; }
|
|
|
|
int getLimit2() { return 42; }
|
|
} |