Hi, I saw a couple concerning bugs in the code like - comparing String, Integer, Float and objects of other wrapper types using == instead of .equals() method. - Accessing methods on potentially null reference.
I ran findbugs on the code base and found a lot of other errors as well. I am working on fixing some of the errors (most of the errors are in Test cases). I was curious, if we run any static code analysis tool as part of build process? More importantly can we force builds to fail if findbugs errors cross a certain threshold.
