Anonymous type has shorter lambda alternative
Reports anonymous classes which could be transformed to a constructor or a factory method call with a lambda expression argument.
The following classes are reported by this inspection:
Anonymous classes extending
ThreadLocal
which have aninitialValue()
method (can be replaced withThreadLocal.withInitial
)Anonymous classes extending
Thread
which have arun()
method (can be replaced withnew Thread(Runnable)
Example:
After the quick-fix is applied:
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
AnonymousHasLambdaAlternative- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
This inspection depends on the Java feature 'ThreadLocal.withInitial()', which is available since Java 8.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 242.22892 |