mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
9 lines
105 B
Plaintext
9 lines
105 B
Plaintext
public class X {
|
|
void f(boolean a, boolean b) {
|
|
if (!a) {
|
|
return;
|
|
}
|
|
b = false;
|
|
}
|
|
}
|