orcid-no-doi #43

Merged
claudio.atzori merged 45 commits from enrico.ottonello/dnet-hadoop:orcid-no-doi into master 2020-12-02 10:55:12 +01:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit 210a50e4f4 - Show all commits

View File

@ -167,10 +167,9 @@ public class PublicationToOaf implements Serializable {
final String source = getStringValue(rootElement, "sourceName");
if (StringUtils.isNotBlank(source)) {
Field<String> sourceField = mapStringField(source, null);
if (sourceField==null) {
if (sourceField == null) {
publication.setSource(null);
}
else {
} else {
publication.setSource(Arrays.asList(sourceField));
}
}
@ -191,7 +190,7 @@ public class PublicationToOaf implements Serializable {
.map(t -> {
return mapStructuredProperty(t, q, null);
})
.filter(s -> s!=null)
.filter(s -> s != null)
.collect(Collectors.toList()));
// Adding identifier
final String id = getStringValue(rootElement, "id");
@ -383,7 +382,8 @@ public class PublicationToOaf implements Serializable {
.map(r -> {
return mapStructuredProperty(r, q, null);
})
.filter(s -> s!=null).collect(Collectors.toList()));
.filter(s -> s != null)
.collect(Collectors.toList()));
}
}