mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 11:07:43 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
14 lines
323 B
HTML
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> |