mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
GitOrigin-RevId: 9121bbda07694cdacab3508a83a08ba10e465d28
13 lines
231 B
Java
13 lines
231 B
Java
// "Create method 'test'" "true-preview"
|
|
public class Test {
|
|
void test(boolean b, Object obj) {
|
|
if (b || test() == obj) {
|
|
// do smth
|
|
}
|
|
}
|
|
|
|
private Object test() {
|
|
return null;
|
|
}
|
|
}
|