Sorry for this simple question
In this class
class GenericTest{
static <T> List<T> getList(List<T> list){
return list;
}
}
why this this <T> just after static needed in the declaration. I thought the return type List<T> is fine.