mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
271 B
Plaintext
18 lines
271 B
Plaintext
class Mapping {
|
|
private int myInt;
|
|
|
|
public void <caret>method(int p1, boolean p2) {
|
|
myInt = p2 ? p1 : 0;
|
|
if (!p2) {
|
|
myInt *= p1;
|
|
}
|
|
}
|
|
|
|
public boolean sayYes() {
|
|
return true;
|
|
}
|
|
|
|
public void context() {
|
|
method(15 / 5, sayYes());
|
|
}
|
|
} |