Add generic String to the ArrayList creation

6.19.x
Yevhenii Voevodin 2016-02-25 19:15:16 +02:00
parent 1082978419
commit dc3395f9a2
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ public class AttributeFilter {
if (factory == null) {
List<String> value = projectConfig.getAttributes().get(attribute.getName());
persistentAttributes.put(variable.getName(), MoreObjects.firstNonNull(value, new ArrayList<>()));
persistentAttributes.put(variable.getName(), MoreObjects.firstNonNull(value, new ArrayList<String>()));
}
}