]> source.dussan.org Git - sonarqube.git/blob
87f41c3480a65292d9adb772f3d79feddf76c088
[sonarqube.git] /
1 <p> This method contains a useless control flow statement in which control
2 flow follows to the same or following line regardless of whether or not
3 the branch is taken.
4 Often, this is caused by inadvertently using an empty statement as the
5 body of an <code>if</code> statement, e.g.:</p>
6 <pre>
7     if (argv.length == 1);
8         System.out.println("Hello, " + argv[0]);
9 </pre>