Why this code generates Warnings ?
This code is a example:
ArrayList<Object> al =new ArrayList<Object>();
Object[] objArray =new Object[100];
objArray[0] = al;
ArrayList<Object> al2 = (ArrayList<Object>)objArray[0];
Why line
ArrayList<Object> al2 = (ArrayList<Object>)objArray[0];
generates Warnings ?
and how can I remove them ?
Thkx

