Files
openide/java/java-impl/resources/inspectionDescriptions/FunctionalExpressionCanBeFolded.html
2025-02-05 04:43:28 +00:00

19 lines
608 B
HTML

<html>
<body>
Reports method references or lambda expressions that point to a method of their own functional interface type and hence can be
replaced with their qualifiers removing unnecessary object allocation.
<p>Example:</p>
<pre><code>
SwingUtilities.invokeLater(r::run);
SwingUtilities.invokeAndWait(() -> r.run());
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
SwingUtilities.invokeLater(r);
SwingUtilities.invokeAndWait(r);
</code></pre>
<!-- tooltip end -->
<p>This inspection reports only if the language level of the project or module is 8 or higher.</p>
</body>
</html>