-
Enhancement
-
Resolution: Duplicate
-
P4
-
None
-
9
DeferredLintHandler.java defines the following nested interface:
public interface LintLogger {
void report();
}
This is clearly a functional interface and its uses should be replaced with lambdas.
public interface LintLogger {
void report();
}
This is clearly a functional interface and its uses should be replaced with lambdas.