Hi,
I think there is a bug in the DataImportAPI.java code.
at Line 48:
@Override
public ImportExecution importFromFile(ImportConfiguration importConfiguration, FileDescriptor fileToImport, Map<String, Object> defaultValues) throws FileStorageException {
return importFromFile(importConfiguration, fileToImport, Collections.emptyMap(),null);
}
I think the “Collections.emptyMap()” should be “defaultValues”.
CK