Files
openide/java/java-impl/resources/inspectionDescriptions/StaticCollection.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

21 lines
574 B
HTML

<html>
<body>
Reports static fields of a <code>Collection</code> type. While it's
not necessarily a problem, static collections often cause memory leaks and are
therefore prohibited by some coding standards.
<p><b>Example:</b></p>
<pre><code>
public class Example {
static List&lt;String&gt; list = new ArrayList&lt;&gt;();
}
</code></pre>
<!-- tooltip end -->
<p>
Configure the inspection:
</p>
<ul>
<li>Use the <b>Ignore weak static collections or maps</b> option to ignore the fields of the <code>java.util.WeakHashMap</code> type.</li>
</ul>
</body>
</html>