mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 00:03:37 +07:00
GitOrigin-RevId: 07a8235e72509e11a48a2304fbfc82aa637c8cf6
8 lines
255 B
Java
8 lines
255 B
Java
// "Replace lambda expression with 'Function.identity()'" "true"
|
|
import java.util.function.Function;
|
|
|
|
class Scratch {
|
|
public static void main(String[] args) {
|
|
Function<? super CharSequence, ? extends CharSequence> myFunc = Function.identity();
|
|
}
|
|
} |