mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
20 lines
334 B
Java
20 lines
334 B
Java
public class Test {
|
|
|
|
boolean test1() {
|
|
<selection>return getSize1() < getLimit1();</selection>
|
|
}
|
|
|
|
boolean test2() {
|
|
return getSize2() < getLimit2();
|
|
}
|
|
|
|
int getSize1() {
|
|
return 42;
|
|
}
|
|
|
|
int getSize2() { return 42; }
|
|
|
|
int getLimit1() { return 42; }
|
|
|
|
int getLimit2() { return 42; }
|
|
} |