mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
8 lines
227 B
Java
8 lines
227 B
Java
// "Replace lambda expression with 'Function.identity()'" "true-preview"
|
|
import java.util.function.Function;
|
|
|
|
class Scratch {
|
|
public static void main(String[] args) {
|
|
Function<String, String> myFunc = c <caret>-> c;
|
|
}
|
|
} |