Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 588 Bytes

File metadata and controls

11 lines (8 loc) · 588 Bytes

AutoValue instances should be deeply immutable. Therefore, we recommend using immutable types for fields. E.g., use ImmutableMap instead of Map, ImmutableSet instead of Set, etc.

Read more at:

Suppress violations by using @SuppressWarnings("AutoValueImmutableFields") on the relevant abstract getter.