Example:
Function<String, Integer> length = a -> a.length();
After the quick-fix is applied:
Function<String, Integer> length = (String a) -> a.length();
This inspection only reports if the language level of the project or module is 8 or higher.