Java inspection: Renamed the inspection "Replace diamond with explicit type arguments" to a noun-based name - typo fixed. (IDEA-157727)

This commit is contained in:
Pavel Dolgov
2016-08-12 16:09:55 +03:00
parent 51e3e59fb0
commit fcba14097e
@@ -3,8 +3,8 @@
This inspection reports instantiation of generic classes where <b>&lt;&gt;</b> (diamond) is used instead of type parameters.
<p>The quick fix replaces the <b>&lt;&gt;</b> (diamond) with the explicit type parameters.
<p>Example of use of the diamond:
<pre><code>List String&gt; list = new ArrayList&lt;&gt;()</code></pre>
<pre><code>List &lt;String&gt; list = new ArrayList&lt;&gt;()</code></pre>
<p>The statement above is replaced with the following:
<pre><code>List String&gt; list = new ArrayList&lt;String&gt;()</code></pre>
<pre><code>List &lt;String&gt; list = new ArrayList&lt;String&gt;()</code></pre>
</body>
</html>