I have a bit of code:
class MyClass<RCM>
private List<RCM> allPreExistingConfigsForCodes() {
if(this.allCodesForThisType.size() == 0)
return new ArrayList<RCM>(0);
IntelliJ is telling me I should replace new ArrayList<RCM>
with new ArrayList<>
what would that mean?