mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
19 lines
608 B
HTML
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> |