mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
10 lines
209 B
Java
10 lines
209 B
Java
// "Replace method call on method reference with corresponding method call" "true-preview"
|
|
import java.util.function.Supplier;
|
|
|
|
class Test {
|
|
String s = foo();
|
|
|
|
private String foo() {
|
|
return null;
|
|
}
|
|
} |