Add generic String to the ArrayList creation
parent
1082978419
commit
dc3395f9a2
|
|
@ -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>()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue