View by Classes

Findings - Overview

info Useless control flow (Findbugs)

Further info on the wiki.

This method contains a useless control flow statement, where control flow continues onto the same place regardless of whether or not the branch is taken. For example, this is caused by having an empty statement block for an if statement:

    if (argv.length == 0) {
	// TODO: handle this case
	}
2org.jcoderz.guidelines.snippets.SampleSnippets
Useless control flow in org.jcoderz.guidelines.snippets.SampleSnippets.counter() [296],
Useless control flow in org.jcoderz.guidelines.snippets.SampleSnippets.statements() [110]
1org.jcoderz.commons.doclet.XmlDoclet
Useless control flow in org.jcoderz.commons.doclet.XmlDoclet.generateExecutableMemberDocBody(ExecutableMemberDoc) [454]