Yes, since generics are erased you cannot actually...
# intellij
d
Yes, since generics are erased you cannot actually check if the object is a
Model<T>
or if it's a
Model<SomethingElse>
. You can only check if it's a
Model<*>
.