I have an object which is a List my cast is:
List<Object> list = (List<Object>)o;
It seems correct but it gives me:
Type safety: Unchecked cast from Object to ArrayList
still...the casting seems correct to me.
I don't want to use the @suppressWarning, I want to solve it.