mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
12 lines
221 B
Java
12 lines
221 B
Java
// "Replace with lambda" "true-preview"
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
class A {
|
|
void anonymousToLambda(String s) {
|
|
String s12 = "";
|
|
Consumer<String> consumer = s13 -> {
|
|
String s1 = "";
|
|
};
|
|
}
|
|
} |