Java8 inspections descriptions: "conversion" => "inspection" (IDEA-CR-17423)

This commit is contained in:
Tagir Valeev
2017-01-18 11:09:51 +07:00
parent 59923c803f
commit 0ee167156d
4 changed files with 4 additions and 4 deletions
@@ -8,7 +8,7 @@ This inspection looks for loops which could be replaced with <code>Arrays.setAll
array[i] = calc(i);
}
</pre>
<p>This conversion is available since Java 8 only.</p>
<p>This inspection is available since Java 8 only.</p>
<small>New in 2017.1</small>
</body>
</html>
@@ -11,7 +11,7 @@ The inspection reports the loops which could be collapsed into single <code>Coll
}
}
</pre>
<p>This conversion is available since Java 8 only.</p>
<p>This inspection is available since Java 8 only.</p>
<small>New in 2016.3</small>
</body>
</html>
@@ -2,7 +2,7 @@
<body>
Inspection detects calls to <code>Collections.sort(list, comparator)</code> which could be replaced with <code>list.sort(comparator)</code>.
<!-- tooltip end -->
<p>This conversion is available since Java 8 only.</p>
<p>This inspection is available since Java 8 only.</p>
<small>New in 2016.3</small>
</body>
</html>
@@ -41,7 +41,7 @@ Inspection detects calls to <code>Map.get</code> which could be replaced with <c
</li>
</ul>
<p>This conversion is available since Java 8 only.</p>
<p>This inspection is available since Java 8 only.</p>
<small>New in 2016.3</small>
</body>
</html>