resources.report.rules.findbugs.SF_SWITCH_NO_DEFAULT.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sanity4j Show documentation
Show all versions of sanity4j Show documentation
Sanity4J was created to simplify running multiple static code
analysis tools on the Java projects. It provides a single entry
point to run all the selected tools and produce a consolidated
report, which presents all findings in an easily accessible
manner.
SF_SWITCH_NO_DEFAULT
SF: Switch statement found where default case is missing (SF_SWITCH_NO_DEFAULT)
This method contains a switch statement where default case is missing.
Usually you need to provide a default case.
Because the analysis only looks at the generated bytecode, this warning can be incorrect triggered if
the default case is at the end of the switch statement and the switch statement doesn't contain break statements for other
cases.
© 2015 - 2024 Weber Informatics LLC | Privacy Policy