mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
18 lines
498 B
HTML
18 lines
498 B
HTML
<html>
|
|
<body>
|
|
Reports calls to <code>Object.wait()</code>, for which no call to the corresponding <code>Object.notify()</code> or
|
|
<code>Object.notifyAll()</code> can be found.
|
|
<p>This inspection only reports calls with qualifiers referencing fields of the current class.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
public class Foo {
|
|
public Object foo = new Object();
|
|
|
|
void bar() throws InterruptedException {
|
|
this.foo.wait();
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |