mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
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;
|
|
}
|
|
}
|