mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
574 B
HTML
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<String> list = new ArrayList<>();
|
|
|
|
}
|
|
</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> |