mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
15 lines
227 B
Plaintext
15 lines
227 B
Plaintext
import java.util.function.Supplier;
|
|
|
|
class Test {
|
|
{
|
|
Supplier<String> sup = () -> {
|
|
if (true) return null;
|
|
return null;
|
|
};
|
|
}
|
|
|
|
private String get() {
|
|
if (true) return null;
|
|
return null;
|
|
}
|
|
} |