Skip to content

Commit

Permalink
Java inspection: Renamed the inspection "Replace method reference wit…
Browse files Browse the repository at this point in the history
…h lambda" to a noun-based name - documentation improved. (IDEA-157727)
  • Loading branch information
pdolgov-spb committed Aug 11, 2016
1 parent b5cc1aa commit 4e93617
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<html>
<body>
This inspection reports method references.
This inspection reports method references, like <code>MyClass::myMethod</code> and <code>myObject::myMethod</code>.
<p> The quick fix for the inspection replaces the method reference with an equivalent lambda expression that invokes the method.
<p>For example, the method reference <code>System.out::println</code> is replaced with
<code>s&nbsp;->&nbsp;System.out.println(s)</code>
</body>
</html>

0 comments on commit 4e93617

Please sign in to comment.