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

15 lines
366 B
HTML

<html>
<body>
Reports methods that call themselves infinitely unless an exception is thrown.
<p>
Methods reported by this inspection cannot return normally.
While such behavior may be intended, in many cases this is just an oversight.
</p>
<p><b>Example:</b></p>
<pre><code> int baz() {
return baz();
}</code></pre>
<!-- tooltip end -->
</body>
</html>