Reports instantiation of generic classes where <> (diamond) is used instead of type parameters.

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>()