forked from D-Net/dnet-hadoop
removed commented lines
This commit is contained in:
parent
6a89f59be9
commit
5669890934
|
@ -156,7 +156,6 @@ public class ResultMapper implements Serializable {
|
||||||
.ifPresent(value -> value.stream().forEach(c -> contributorList.add(c.getValue())));
|
.ifPresent(value -> value.stream().forEach(c -> contributorList.add(c.getValue())));
|
||||||
out.setContributor(contributorList);
|
out.setContributor(contributorList);
|
||||||
|
|
||||||
// List<Country> countryList = new ArrayList<>();
|
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(input.getCountry())
|
.ofNullable(input.getCountry())
|
||||||
.ifPresent(
|
.ifPresent(
|
||||||
|
@ -188,8 +187,6 @@ public class ResultMapper implements Serializable {
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
.collect(Collectors.toList())));
|
.collect(Collectors.toList())));
|
||||||
|
|
||||||
// out.setCountry(countryList);
|
|
||||||
|
|
||||||
final List<String> coverageList = new ArrayList<>();
|
final List<String> coverageList = new ArrayList<>();
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(input.getCoverage())
|
.ofNullable(input.getCoverage())
|
||||||
|
@ -397,12 +394,7 @@ public class ResultMapper implements Serializable {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static <I extends Instance> void setCommonValue(eu.dnetlib.dhp.schema.oaf.Instance i, I instance) {// <I
|
private static <I extends Instance> void setCommonValue(eu.dnetlib.dhp.schema.oaf.Instance i, I instance) {
|
||||||
// extends
|
|
||||||
// Instance>
|
|
||||||
// I
|
|
||||||
// getInstance(eu.dnetlib.dhp.schema.oaf.Instance
|
|
||||||
// i, boolean graph) {
|
|
||||||
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> opAr = Optional
|
Optional<eu.dnetlib.dhp.schema.oaf.Qualifier> opAr = Optional
|
||||||
.ofNullable(i.getAccessright());
|
.ofNullable(i.getAccessright());
|
||||||
if (opAr.isPresent()) {
|
if (opAr.isPresent()) {
|
||||||
|
@ -427,7 +419,6 @@ public class ResultMapper implements Serializable {
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(i.getRefereed())
|
.ofNullable(i.getRefereed())
|
||||||
.ifPresent(value -> instance.setRefereed(value.getClassname()));
|
.ifPresent(value -> instance.setRefereed(value.getClassname()));
|
||||||
// .ifPresent(value -> instance.setRefereed(value.getValue()));
|
|
||||||
Optional
|
Optional
|
||||||
.ofNullable(i.getInstancetype())
|
.ofNullable(i.getInstancetype())
|
||||||
.ifPresent(value -> instance.setType(value.getClassname()));
|
.ifPresent(value -> instance.setType(value.getClassname()));
|
||||||
|
@ -437,10 +428,8 @@ public class ResultMapper implements Serializable {
|
||||||
|
|
||||||
private static List<Provenance> getUniqueProvenance(List<Provenance> provenance) {
|
private static List<Provenance> getUniqueProvenance(List<Provenance> provenance) {
|
||||||
Provenance iProv = new Provenance();
|
Provenance iProv = new Provenance();
|
||||||
// iProv.setProvenance(Constants.INFERRED);
|
|
||||||
|
|
||||||
Provenance hProv = new Provenance();
|
Provenance hProv = new Provenance();
|
||||||
// hProv.setProvenance(Constants.HARVESTED);
|
|
||||||
Provenance lProv = new Provenance();
|
Provenance lProv = new Provenance();
|
||||||
|
|
||||||
for (Provenance p : provenance) {
|
for (Provenance p : provenance) {
|
||||||
|
|
Loading…
Reference in New Issue