mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-07 02:29:08 +00:00
a75dce9577
WARNING: the eclipse static analyser is pretty limited and it cannot cope with cases like: correlated variables, exception paths, .... 70% of eclipse warnings on artemis codebase is a false alarm. Anyway some variable correlations can be eliminated and code becomes more readable for humans too. For "never-throws", the assumption is made explicit. If you disagree with the reverse-engineered assumption then it is likely an indication of a true potential NPE. Last but not least, copy&paste is a common source of bugs. I suspect eclipse indirectly detected one such case. Hope it helps