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
jjwt/api/src/main/java/io/jsonwebtoken/lang/Maps.java
Line 66 in 7090bf3
Using and even once and the type parameters are erased and you have to put @SuppressWarnings("unchecked") on that line.
and
@SuppressWarnings("unchecked")
@SuppressWarnings("unchecked") Map<String, String> myMap = Maps .<String, String>of("key1", "value1") // MapBuilder<String, String> .and("key2", "value2") // MapBuilder .build(); // Map
The text was updated successfully, but these errors were encountered:
cc @bdemers
Sorry, something went wrong.
Add parameterized return type to Maps.and()
2ad681a
Fixes: #591
Add parameterized return type to Maps.and() (#597)
43de9a3
Successfully merging a pull request may close this issue.
jjwt/api/src/main/java/io/jsonwebtoken/lang/Maps.java
Line 66 in 7090bf3
Using
and
even once and the type parameters are erased and you have to put@SuppressWarnings("unchecked")
on that line.The text was updated successfully, but these errors were encountered: