The following code has the warning
value.isInstanceOf[Map[Any,Any]]
non-variable type argument Any in type Map[Any,Any] is unchecked since it is eliminated by erasure
How to eliminate the warning while still able to check data of the Type Map[Any,Any]?
Thx :)