Reports variable declarations with initializer where the variable type is declared with raw type whereas initializer has fully parameterized generic type, e.g. List list = new ArrayList<String>()

The quick fix adds generic parameters to the variable type. The result would be like the following:

List<String> list = new ArrayList<String>()