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
In order to update the version of Guava, or, in fact mention that we depend on Guava (see issue #49), we'll need to convert uses of Iterators.emptyIterator() to ImmutableSet.<T>of().iterator() per https://guava.dev/releases/19.0/api/docs/com/google/common/collect/Iterators.html#emptyIterator()
Iterators.emptyIterator()
ImmutableSet.<T>of().iterator()
The text was updated successfully, but these errors were encountered:
Dependent project has already updated to beyond where it has been removed in java-json-tools/jackson-coreutils@61f98e1
Sorry, something went wrong.
Remove references to Iterators.<T>emptyIterator().
c763f44
Fixes java-json-tools#57.
5497f90
Fixes #57.
Successfully merging a pull request may close this issue.
In order to update the version of Guava, or, in fact mention that we depend on Guava (see issue #49), we'll need to convert uses of
Iterators.emptyIterator()
toImmutableSet.<T>of().iterator()
per https://guava.dev/releases/19.0/api/docs/com/google/common/collect/Iterators.html#emptyIterator()The text was updated successfully, but these errors were encountered: