Guillaume Toison

Results 226 comments of Guillaume Toison

Sorry for the belated answer, any idea what happened here? Or better yet, what are the steps to reproduce the problem?

There isn't much information here that could help troubleshooting the problem. However please keep in mind that SpotBugs works by analyzing the compiled `.class` files, not the source files. So...

How are you running SpotBugs @vy ? In the SonarQube plugin we have added the `sonar.findbugs.allowuncompiledcode` option for that type of situation. Maybe this should be natively part of SpotBugs

Hum, I digged a bit into it and SpotBugs already has a `-noClassOk` option for this @hazendaz I think it wouldn't be too hard to expose the option through the...

@uhafner and @jbindel this was fixed by @baloghadamsoftware in #2141 @Apache9 There's an outstanding issue (#1797) that the heuristic to detect mutable classes looks for some prefixes in method names...

Thanks for the feedback! Unless someone thinks otherwise I suppose that we can close this issue.

Sorry for the belated answer, the project is a bit low on manpower and it is quite complicated as well (it is static flow analysis after all...) Can you try:...

`MutableClasses.looksLikeASetter` is used to detect a mutable class, it checks if a method name starts with one of the suspicious prefixes and if the return type is different compared to...

Hello @hazendaz, the issue is not fixed unfortunately: #2514 mitigates the problem for enums and records, but other classes might be recognized as mutable solely because they have a method...