Files
openide/java/java-impl/resources/inspectionDescriptions/StaticCollection.html
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>