All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.report.rules.findbugs.BSHIFT_WRONG_ADD_PRIORITY.html Maven / Gradle / Ivy



BSHIFT_WRONG_ADD_PRIORITY

BSHIFT: Possible bad parsing of shift operation (BSHIFT_WRONG_ADD_PRIORITY)

The code performs an operation like (x << 8 + y). Although this might be correct, probably it was meant to perform (x << 8) + y, but shift operation has a lower precedence, so it's actually parsed as x << (8 + y).





© 2015 - 2024 Weber Informatics LLC | Privacy Policy