-
In several Eclipse versions the installation respectively the update to newer Spotbug versions fails with following error:
An error occurred while collecting items to be installed
session context …
-
Eclipse is supporting 3 different (customizable) types of null check annotations
1. `@Nullable` -> element can be null
1. `@NonNull` -> element must never be null
1. `@NonNullByDe…
-
https://stackoverflow.com/questions/24630963/java-8-nullpointerexception-in-collectors-tomap
Given that spotbugs already has various tools to detect nulls, it seems likely that a check could be add…
-
-
It seems spotbugs 4.7.3 has a false positive on the following code where it "fails" on the second peek in the streaming part in `getList()`.
If I comment it, all is good. I read somewhere spotbugs ha…
-
Hello!
I was testing various Java analyzer tools on different projects used as test projects. One analyzer tool was the test project of another one :-) Last time Spotbugs was the test project for F…
-
FindSecBugs can break build if vulnerabilities are found
https://github.com/find-sec-bugs/find-sec-bugs/wiki/Maven-configuration
It should positively affect the score for FindSecBugs.
- [ ] A…
-
I have the following in my build script:
```kotlin
tasks.withType {
reports {
xml.isWithMessages = true
html.let { it as CustomizableHtmlReport }.stylesheet = resources.text…
-
This is more of a question than reporting a issue, does this support doing incremental analysis by adding
`cache` property to plugin configuration ?
Or something on the similar lines, the general …
-
Hi, I found a interesting false negative about the rule [NP_NULL_ON_SOME_PATH](https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#np-possible-null-pointer-dereference-np-null-on-some-path)…