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