]> source.dussan.org Git - sonarqube.git/blob
c3a5f9ed14e18f51bd9a282b25f4e6c2655ff18e
[sonarqube.git] /
1 <p> This method contains a double assignment of a local variable; e.g.
2 </p>
3 <pre>
4   public void foo() {
5     int x,y;
6     x = x = 17;
7   }
8 </pre>
9 <p>Assigning the same value to a variable twice is useless, and may indicate a logic error or typo.</p>