Reports instantiation of generic classes where <> (diamond) is used instead of type parameters. This action could be useful when the code needs to be adapted to be compatible with Java 6.

The quick fix replaces the <> (diamond) with the explicit type parameters.

Example of use of the diamond:

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

The statement above is replaced with the following:

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