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