new expressions with type arguments that can be replaced a with diamond type <>.
Example:
List<String> list = new ArrayList<String>(); // reports array list type argument
After the quick-fix is applied:
List<String> list = new ArrayList<>();