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

14 lines
323 B
HTML

<html>
<body>
Reports reassigned variables, which complicate reading and understanding the code.
<p>Example:</p>
<pre><code>
int value = 2 * (height + width);
System.out.println("perimeter: " + value);
value = height * width;
System.out.println("area: " + value);
</code></pre>
<!-- tooltip end -->
</body>
</html>