In my Activity.OnCreate I am setting up some android ImageViews. Findbugs is complaining about potential unsynchronized access – all other access is from other overridden Activity methods (or construction time), so this seems strange. Can I safely ignore this?
The Findbugs warning:
Bug: Inconsistent synchronization of
com.voltup.powermax.Activity.mActionButton; locked 66% of time Pattern
id: IS2_INCONSISTENT_SYNC, type: IS, category: MT_CORRECTNESSThe fields of this class appear to be accessed inconsistently with
respect to synchronization. This bug report indicates that the bug
pattern detector judged that
It’s complaining about which methods? Can you post the code? But probably, yes, you can ignore that.