mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
401 B
HTML
15 lines
401 B
HTML
<html>
|
|
<body>
|
|
Reports lambda expressions with code block bodies when expression-style bodies can be used instead.
|
|
The result of the conversion is shorter and more clear.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
Comparable<String> c = o -> {return 0;};
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
Comparable<String> c = o -> 0;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |