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>
7 if (argv.length == 0) {
8 // TODO: handle this case