i migrated my struts project from jdeveloper 10.3.4 to 11g. A simple java code that was working fine has stopped working.
return (List<HardwareType>)dao.selectAll();
the selectAll()
method returns List<CommonDomain>
which I am typecasting as above.
And-- public class HardwareType extends CommonDomain{
all this was working fine in jDeveloper 10g. Even if jdeveloper 11g uses java 7 , i don't think java 7 can break this code.