Hi, In the utility class Collections there are three static variables: EMPTY_LIST EMPTY_MAP EMPTY_SET I used them often as a default value. This was good in pre 1.5. But with v1.5 you get a warning because these variables don't have a generic parameter type. So what is the suggested way, if you don't want to have any warnings? Don't use these ...