We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some generated builder code features:
Collections.unmodifiableList(new ArrayList<>(listToCopy));
…but should use:
List.copyOf(listToCopy);
…instead.
The text was updated successfully, but these errors were encountered:
Fixed by #7008
Still using other methods for Set and Map, as we want to preserve order of insertion.
Sorry, something went wrong.
tomas-langer
trentjeff
No branches or pull requests
Some generated builder code features:
…but should use:
…instead.
The text was updated successfully, but these errors were encountered: