mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
15 lines
427 B
HTML
15 lines
427 B
HTML
<html>
|
|
<body>
|
|
Reports <code>public</code> <code>static</code> array fields.
|
|
<p>
|
|
Such fields are often used to store arrays of constant values. Still, they represent a security
|
|
hazard, as their contents may be modified, even if the field is declared <code>final</code>.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
public static String[] allowedPasswords = {"foo", "bar"};
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
|
|
</body>
|
|
</html> |