Anyone ever heard of intellij not recognizing the ...
# intellij
t
Anyone ever heard of intellij not recognizing the types of objects correctly? In my case im calling
Copy code
call.parameters.get("")
while
call.parameters
is of type
Parameters
which in turn inherits from
StringValues
which in turn decalres
operator fun get(name: String)
. But intellij denies any knowlege about this class (allthough i can import it directly and even cast the
prameters
into this type). I already deleted all gradle downloads, cleaned the cache, reindexed everything... but intellig still doesnt work in this point. (of cours intellij is wrong. i cant start the application via gradle without problems)