mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
192 B
Plaintext
12 lines
192 B
Plaintext
public class ABl {
|
|
|
|
void bar(boolean br) {
|
|
int fe = 0;
|
|
if (br) {
|
|
System.out.println(fe);
|
|
} else {
|
|
System.out.println(11);
|
|
}
|
|
}
|
|
}
|