Files
openide/java/java-impl/resources/inspectionDescriptions/ObjectNotify.html
2025-02-05 04:43:28 +00:00

7 lines
313 B
HTML

<html>
<body>
Reports calls to <code>Object.notify()</code>. While occasionally useful, in almost all cases
<code>Object.notifyAll()</code> is a better choice because calling <code>Object.notify()</code> may lead to deadlocks.
See Doug Lea's <i>Concurrent Programming in Java</i> for a discussion.
</body>
</html>