mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
219 B
Java
12 lines
219 B
Java
// "Replace with lambda" "true-preview"
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
class A {
|
|
void anonymousToLambda(String s) {
|
|
String s2 = "";
|
|
Consumer<String> consumer = s3 -> {
|
|
String s1 = "";
|
|
};
|
|
}
|
|
} |