posted 17 years ago
mmm, i am not sure what you wish to intend by List<? super Object>
This means either a superclass of Object(No class qualifies this rule) or the Object itself.
Since, there is no superclass of Object, its as good as saying List<Object>
If you do the above, everything should work fine.