I have a question please, I'm trying to fix the hi...
# getting-started
d
I have a question please, I'm trying to fix the highlighted line, but I don´t achieve to fix it. The suggestion from IntelliJ is to put
root.<String>get("codes")
but it always shows me another failure, does someone know about JPA Specification that you can help me?
g
The pop-up on your screenshot looks like javadoc. Did you try specifying type parameters correctly (as Kotlin specifies)?
Copy code
root.get<String>("codes")
(Or use more apropriate type instead of
String
.)
d
Ey! Gleb thanks, I got confused because I thought it was kotlin documentation, thanks for your advice, it's already done! 🙂