Open gergopapi2 opened 6 years ago
@gergopapi2 are you aware of @KengoTODA's https://github.com/KengoTODA/findbugs-slf4j ?
@gergopapi2 specifically this is actually what I proposed in https://github.com/KengoTODA/findbugs-slf4j/issues/74 ...
@vorburger thank you very much following up on my mail and pointing me to your PR in KengoTODA's repo. Yes, that is something we would like to have - I will keep an eye on it and let my team know about this.
Would your PR detect also the following pattern?
try{
...
} catch (SomeThirdPartyException e){
// no logging, and original exception not passed to MyCustomException
throw new MyCustomException("some bad description")
}
Dear Spotbugs Team,
in our code we would like to spot issues like these:
1.
Or 2.
Does Spotbugs detect such issues? Reading through the bug pattern list I thought DE_MIGHT_DROP or DE_MIGHT_IGNORE would detect case 1., but somehow it did not.
So my questions:
Thank you very much for your help in advance, Gergely
Our setup:
java 10 we use the gradle plugin
No includeFilter was used.
Content of excludeFilter.xml ():
Please let me know if you need further details