mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
534 B
HTML
17 lines
534 B
HTML
<html>
|
|
<body>
|
|
Reports instance variables that may be uninitialized upon object initialization.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class Foo {
|
|
public int bar;
|
|
|
|
static { }
|
|
}
|
|
</code></pre>
|
|
<p>Note that this inspection uses a very conservative dataflow algorithm and may incorrectly report instance variables as uninitialized. Variables
|
|
reported as initialized will always be initialized.</p>
|
|
<!-- tooltip end -->
|
|
<p>Use the <b>Ignore primitive fields</b> option to ignore uninitialized primitive fields.</p>
|
|
</body>
|
|
</html> |