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
Map.get() and Map.containsKey() are not handled correctly. A workaround exists:
Map.get()
Map.containsKey()
@TemplateExtension static Object get(Map<?, ?> map, Object key) { return map.get(key); } @TemplateExtension static boolean containsKey(Map<?, ?> map, Object key) { return map.containsKey(key); }
The text was updated successfully, but these errors were encountered:
Thanks, the workaround works like a charm. I wasn't aware of the second param option. 👍
Sorry, something went wrong.
Qute - fix default template extensions for java.util.Map
5d7ade1
- resolves quarkusio#6519
907275b
4a9b432
40e1020
23ba947
- resolves #6519
mkouba
Successfully merging a pull request may close this issue.
Map.get()
andMap.containsKey()
are not handled correctly. A workaround exists:The text was updated successfully, but these errors were encountered: