View by Classes

Findings - Overview

warning Serializable inner class (Findbugs)

Further info on the wiki.

This Serializable class is an inner class. Any attempt to serialize it will also serialize the associated outer instance. The outer instance is serializable, so this won't fail, but it might serialize a lot more data than intended. If possible, making the inner class a static inner class (also known as a nested class) should solve the problem.

1org.jcoderz.guidelines.snippets.SampleSnippets
org.jcoderz.guidelines.snippets.SampleSnippets$IndentionSample is serializable and an inner class [338]
1org.jcoderz.guidelines.snippets.IndentationSample
org.jcoderz.guidelines.snippets.IndentationSample$SimpleImplementator is serializable and an inner class [53]