]> source.dussan.org Git - sonarqube.git/blob
db2b0769b1866b8c051c1bb95f85db1da9db2f34
[sonarqube.git] /
1 <p> This method contains a useless control flow statement, where
2 control flow continues onto the same place regardless of whether or not
3 the branch is taken. For example,
4 this is caused by having an empty statement
5 block for an <code>if</code> statement:</p>
6 <pre>
7     if (argv.length == 0) {
8         // TODO: handle this case
9         }
10 </pre>