refactoring
This commit is contained in:
parent
ff7d05abb4
commit
e623f12bef
|
@ -113,7 +113,10 @@ public class DumpGraphEntities implements Serializable {
|
||||||
|
|
||||||
datasource.setId(d.getId());
|
datasource.setId(d.getId());
|
||||||
|
|
||||||
Optional.ofNullable(d.getOriginalId()).ifPresent(oId -> datasource.setOriginalId(oId.stream().filter(Objects::nonNull).collect(Collectors.toList())));
|
Optional
|
||||||
|
.ofNullable(d.getOriginalId())
|
||||||
|
.ifPresent(
|
||||||
|
oId -> datasource.setOriginalId(oId.stream().filter(Objects::nonNull).collect(Collectors.toList())));
|
||||||
|
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(d.getPid())
|
.ofNullable(d.getPid())
|
||||||
|
@ -334,9 +337,9 @@ public class DumpGraphEntities implements Serializable {
|
||||||
.ofNullable(p.getKeywords())
|
.ofNullable(p.getKeywords())
|
||||||
.ifPresent(key -> project.setKeywords(key.getValue()));
|
.ifPresent(key -> project.setKeywords(key.getValue()));
|
||||||
|
|
||||||
Optional
|
// Optional
|
||||||
.ofNullable(p.getDuration())
|
// .ofNullable(p.getDuration())
|
||||||
.ifPresent(duration -> project.setDuration(duration.getValue()));
|
// .ifPresent(duration -> project.setDuration(duration.getValue()));
|
||||||
|
|
||||||
Optional<Field<String>> omandate = Optional.ofNullable(p.getOamandatepublications());
|
Optional<Field<String>> omandate = Optional.ofNullable(p.getOamandatepublications());
|
||||||
Optional<Field<String>> oecsc39 = Optional.ofNullable(p.getEcsc39());
|
Optional<Field<String>> oecsc39 = Optional.ofNullable(p.getEcsc39());
|
||||||
|
|
Loading…
Reference in New Issue