> I investigated configuring FindBugs and SpotBugs to find this error but could > not figure it out.
I see some FindBugs annotations in the project, but no FindBugs mojo being run. Something you would run manually? The detector in question would be [`SE_BAD_FIELD`](http://findbugs.sourceforge.net/bugDescriptions.html#SE_BAD_FIELD) I think. The description does imply that it excludes classes with a `readObject` / `writeObject` so perhaps these methods in `Throwable` would suppress the warning, even though the implementations call `defaultReadObject` / `defaultWriteObject` so the warning remains valid. Not sure offhand. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/1211#issuecomment-390985220
