Please consider editing your post and mark it as obsolete instead. Do you want to delete post?
Casting to incompatible interface
Permanently deleted user
Created
Having List ls=null;
List ls2=(List)ls;
then the obsolete cast (List]]>) is marked with "Casting to incompatible interface". (Build 4121). Is this already known?
Having List<String> ls=null; List<String> ls2=(List<String>)ls; then the obsolete cast (List<String>) is marked with "Casting to incompatible interface". (Build 4121). Is this already known?
>> Having >> List ls=null;
>> List ls2=(List)ls;
>> then the obsolete cast (List) is marked with
>> "Casting to incompatible interface".
>> (Build 4121).
>>]]> Is this already known?
Sven Steiniger wrote:
http://www.jetbrains.net/jira/browse/IDEADEV-4270
Known and fixed in the currently available #4137.
Bas
Bas Leijdekkers schrieb:
>> Having
>> List ls=null; >> List ls2=(List)ls; >> then the obsolete cast (List) is marked with >> "Casting to incompatible interface". >> (Build 4121). >>]]> Is this already known?
Thanks