Why is "serialVersionUID not present" inspection disabled by default?

Answered

Why is "serialVersionUID not present" inspection disabled by default? As it is generally recognized as a good practice to declare serialVersionUID for Serializable classes, why is thy inspection disabled by default? For example Eclipse has it enabled.

0
1 comment
Official comment

Of the many hundreds of inspections provided, we try to enable by default only the most useful inspections which produce the fewest unnecessary warnings. Many projects which do not use serialization still contain many classes that are Serializable by inheritance. In these projects the warnings would just be unnecessary noise. Therefore it's disabled by default.

Please sign in to leave a comment.