mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
4bb02e9e68
GitOrigin-RevId: f7ab010a75203486f0c967ae5ba7c69db81ad812
13 lines
223 B
Java
13 lines
223 B
Java
// "Create method 'test'" "true"
|
|
public class Test {
|
|
void test(boolean b, Object obj) {
|
|
if (b || test() == obj) {
|
|
// do smth
|
|
}
|
|
}
|
|
|
|
private Object test() {
|
|
return null;
|
|
}
|
|
}
|