Randgalt / record-builder

Record builder generator for Java records
Apache License 2.0
723 stars 51 forks source link

Fix -Xlint warnings in the generated code #178

Closed mensinda closed 5 months ago

mensinda commented 5 months ago

This PR fixes the serial and unchecked warnings in the generated builder classes by adding @SuppressWarnings("unchecked") to the __<collection> functions and by adding public static final long serialVersionUID = 1L; to the subclassed collections.

Randgalt commented 5 months ago

Thank you!